diff --git a/.github/create_code_connect/action.yml b/.github/create_code_connect/action.yml new file mode 100644 index 00000000..234b1f4e --- /dev/null +++ b/.github/create_code_connect/action.yml @@ -0,0 +1,10 @@ +name: "Create Code Connect" +description: "Generate code connect files" +inputs: + figma-access-token: + description: "The personal access token given by Figma. Required to make API calls" + required: true + +runs: + using: "node20" + main: "index.js" diff --git a/.github/create_code_connect/index.js b/.github/create_code_connect/index.js new file mode 100644 index 00000000..6c5195d6 --- /dev/null +++ b/.github/create_code_connect/index.js @@ -0,0 +1,11 @@ +import { readFileSync } from "fs"; +import { generateCodeConnectFiles } from "../../dist/scripts/code-connect/generate-code-connect-files.js"; + +const main = async () => { + const iconManifest = new Map(Object.entries(JSON.parse(readFileSync("../../outputs/icon-manifest.json")))); + const dir = "../../outputs/code-connect"; + + generateCodeConnectFiles(dir, iconManifest); +}; + +main(); diff --git a/.github/publish_code_connect/action.yml b/.github/publish_code_connect/action.yml new file mode 100644 index 00000000..c57ed475 --- /dev/null +++ b/.github/publish_code_connect/action.yml @@ -0,0 +1,10 @@ +name: "Publish Code Connect" +description: "Publish code connect files" +inputs: + figma-access-token: + description: "The personal access token given by Figma. Required to make API calls" + required: true + +runs: + using: "node20" + main: "index.js" diff --git a/.github/publish_code_connect/index.js b/.github/publish_code_connect/index.js new file mode 100644 index 00000000..495c1cb8 --- /dev/null +++ b/.github/publish_code_connect/index.js @@ -0,0 +1,13 @@ +import core from "@actions/core"; +import util from "util"; +import { exec } from "child_process"; +const asyncExec = util.promisify(exec); + +const FIGMA_ACCESS_TOKEN = core.getInput("figma-access-token") || process.env.FIGMA_ACCESS_TOKEN; + +const { stdout, stderr } = await asyncExec(`npx figma connect publish --token ${FIGMA_ACCESS_TOKEN}`, { + cwd: "../..", +}); + +console.log(stdout); +console.error(stderr); diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index deab30c6..8e657ee8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,6 +46,9 @@ jobs: figma-access-token: ${{ secrets.FIGMA_PERSONAL_ACCESS_TOKEN }} - name: Icons changed run: echo ${{ steps.fetch_icons.outputs.files_changed }} + - name: Create code connect files + if: ${{ steps.fetch_icons.outputs.files_changed == 'true'}} + uses: ./.github/create_code_connect - name: Get current date if: ${{ steps.fetch_icons.outputs.files_changed == 'true'}} id: date diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml index c5a329d5..98a5dc4b 100644 --- a/.github/workflows/on-release.yml +++ b/.github/workflows/on-release.yml @@ -27,6 +27,10 @@ jobs: run: npm publish env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + - name: Publish code connect + uses: ./.github/publish_code_connect + with: + figma-access-token: ${{ secrets.FIGMA_PERSONAL_ACCESS_TOKEN }} update_npm_dependencies: needs: publish diff --git a/figma.config.json b/figma.config.json new file mode 100644 index 00000000..afb702b3 --- /dev/null +++ b/figma.config.json @@ -0,0 +1,6 @@ +{ + "codeConnect": { + "include": ["outputs/code-connect/**/*.figma.ts"], + "exclude": ["test/**/*.figma.ts"] + } +} diff --git a/outputs/code-connect/activity.figma.ts b/outputs/code-connect/activity.figma.ts new file mode 100644 index 00000000..821eaf1d --- /dev/null +++ b/outputs/code-connect/activity.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:519", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`activity`, +}); diff --git a/outputs/code-connect/add.figma.ts b/outputs/code-connect/add.figma.ts new file mode 100644 index 00000000..9b8eb6cb --- /dev/null +++ b/outputs/code-connect/add.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:723", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add`, +}); diff --git a/outputs/code-connect/add_alert.figma.ts b/outputs/code-connect/add_alert.figma.ts new file mode 100644 index 00000000..9fb6b933 --- /dev/null +++ b/outputs/code-connect/add_alert.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=240:46", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-alert`, +}); diff --git a/outputs/code-connect/add_box.figma.ts b/outputs/code-connect/add_box.figma.ts new file mode 100644 index 00000000..bd633cdb --- /dev/null +++ b/outputs/code-connect/add_box.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:701", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-box`, +}); diff --git a/outputs/code-connect/add_call.figma.ts b/outputs/code-connect/add_call.figma.ts new file mode 100644 index 00000000..ed0c9d4b --- /dev/null +++ b/outputs/code-connect/add_call.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4518", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-call`, +}); diff --git a/outputs/code-connect/add_circle.figma.ts b/outputs/code-connect/add_circle.figma.ts new file mode 100644 index 00000000..f6a980e9 --- /dev/null +++ b/outputs/code-connect/add_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:702", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-circle`, +}); diff --git a/outputs/code-connect/add_circle_outline.figma.ts b/outputs/code-connect/add_circle_outline.figma.ts new file mode 100644 index 00000000..84feedf1 --- /dev/null +++ b/outputs/code-connect/add_circle_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:703", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-circle outline`, +}); diff --git a/outputs/code-connect/add_group.figma.ts b/outputs/code-connect/add_group.figma.ts new file mode 100644 index 00000000..648574f0 --- /dev/null +++ b/outputs/code-connect/add_group.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1122", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-group`, +}); diff --git a/outputs/code-connect/add_person.figma.ts b/outputs/code-connect/add_person.figma.ts new file mode 100644 index 00000000..6142c613 --- /dev/null +++ b/outputs/code-connect/add_person.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1119", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-person`, +}); diff --git a/outputs/code-connect/add_task.figma.ts b/outputs/code-connect/add_task.figma.ts new file mode 100644 index 00000000..2fe5710f --- /dev/null +++ b/outputs/code-connect/add_task.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:54", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`add-task`, +}); diff --git a/outputs/code-connect/adjustments.figma.ts b/outputs/code-connect/adjustments.figma.ts new file mode 100644 index 00000000..71a4de9d --- /dev/null +++ b/outputs/code-connect/adjustments.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1753", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`adjustments`, +}); diff --git a/outputs/code-connect/alarm.figma.ts b/outputs/code-connect/alarm.figma.ts new file mode 100644 index 00000000..23323aba --- /dev/null +++ b/outputs/code-connect/alarm.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4022", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`alarm`, +}); diff --git a/outputs/code-connect/alert.figma.ts b/outputs/code-connect/alert.figma.ts new file mode 100644 index 00000000..5c19ba60 --- /dev/null +++ b/outputs/code-connect/alert.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=803:1800", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`alert`, +}); diff --git a/outputs/code-connect/alert_active.figma.ts b/outputs/code-connect/alert_active.figma.ts new file mode 100644 index 00000000..2ef013e7 --- /dev/null +++ b/outputs/code-connect/alert_active.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1126", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`alert-active`, +}); diff --git a/outputs/code-connect/alert_outline.figma.ts b/outputs/code-connect/alert_outline.figma.ts new file mode 100644 index 00000000..22500a25 --- /dev/null +++ b/outputs/code-connect/alert_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1128", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`alert-outline`, +}); diff --git a/outputs/code-connect/align_center.figma.ts b/outputs/code-connect/align_center.figma.ts new file mode 100644 index 00000000..d2763d98 --- /dev/null +++ b/outputs/code-connect/align_center.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1126", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-center`, +}); diff --git a/outputs/code-connect/align_horizontal_center.figma.ts b/outputs/code-connect/align_horizontal_center.figma.ts new file mode 100644 index 00000000..54d14924 --- /dev/null +++ b/outputs/code-connect/align_horizontal_center.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1358", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-horizontal center`, +}); diff --git a/outputs/code-connect/align_horizontal_left.figma.ts b/outputs/code-connect/align_horizontal_left.figma.ts new file mode 100644 index 00000000..ae67817a --- /dev/null +++ b/outputs/code-connect/align_horizontal_left.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1112", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-horizontal left`, +}); diff --git a/outputs/code-connect/align_horizontal_right.figma.ts b/outputs/code-connect/align_horizontal_right.figma.ts new file mode 100644 index 00000000..bde860c8 --- /dev/null +++ b/outputs/code-connect/align_horizontal_right.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1111", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-horizontal right`, +}); diff --git a/outputs/code-connect/align_left.figma.ts b/outputs/code-connect/align_left.figma.ts new file mode 100644 index 00000000..3d1d196b --- /dev/null +++ b/outputs/code-connect/align_left.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1123", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-left`, +}); diff --git a/outputs/code-connect/align_right.figma.ts b/outputs/code-connect/align_right.figma.ts new file mode 100644 index 00000000..45d87089 --- /dev/null +++ b/outputs/code-connect/align_right.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1125", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-right`, +}); diff --git a/outputs/code-connect/align_vertical_bottom.figma.ts b/outputs/code-connect/align_vertical_bottom.figma.ts new file mode 100644 index 00000000..509312fb --- /dev/null +++ b/outputs/code-connect/align_vertical_bottom.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1113", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-vertical bottom`, +}); diff --git a/outputs/code-connect/align_vertical_center.figma.ts b/outputs/code-connect/align_vertical_center.figma.ts new file mode 100644 index 00000000..49cef993 --- /dev/null +++ b/outputs/code-connect/align_vertical_center.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1110", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-vertical center`, +}); diff --git a/outputs/code-connect/align_vertical_top.figma.ts b/outputs/code-connect/align_vertical_top.figma.ts new file mode 100644 index 00000000..d76ac245 --- /dev/null +++ b/outputs/code-connect/align_vertical_top.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1114", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`align-vertical top`, +}); diff --git a/outputs/code-connect/analytics.figma.ts b/outputs/code-connect/analytics.figma.ts new file mode 100644 index 00000000..ecd4b77f --- /dev/null +++ b/outputs/code-connect/analytics.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3536", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`analytics`, +}); diff --git a/outputs/code-connect/android.figma.ts b/outputs/code-connect/android.figma.ts new file mode 100644 index 00000000..eb713a70 --- /dev/null +++ b/outputs/code-connect/android.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=649:1688", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`android`, +}); diff --git a/outputs/code-connect/antenna.figma.ts b/outputs/code-connect/antenna.figma.ts new file mode 100644 index 00000000..aa6a9171 --- /dev/null +++ b/outputs/code-connect/antenna.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2254", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`antenna`, +}); diff --git a/outputs/code-connect/app_edit.figma.ts b/outputs/code-connect/app_edit.figma.ts new file mode 100644 index 00000000..9e5c96dd --- /dev/null +++ b/outputs/code-connect/app_edit.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:483", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`app-edit`, +}); diff --git a/outputs/code-connect/apps.figma.ts b/outputs/code-connect/apps.figma.ts new file mode 100644 index 00000000..d93482aa --- /dev/null +++ b/outputs/code-connect/apps.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4810", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`apps`, +}); diff --git a/outputs/code-connect/ar.figma.ts b/outputs/code-connect/ar.figma.ts new file mode 100644 index 00000000..5a6f521a --- /dev/null +++ b/outputs/code-connect/ar.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4026", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`ar`, +}); diff --git a/outputs/code-connect/arrow_back.figma.ts b/outputs/code-connect/arrow_back.figma.ts new file mode 100644 index 00000000..48c7b21c --- /dev/null +++ b/outputs/code-connect/arrow_back.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4858", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`arrow-back`, +}); diff --git a/outputs/code-connect/arrow_down.figma.ts b/outputs/code-connect/arrow_down.figma.ts new file mode 100644 index 00000000..82382db4 --- /dev/null +++ b/outputs/code-connect/arrow_down.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=247:571", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`arrow-down`, +}); diff --git a/outputs/code-connect/arrow_forward.figma.ts b/outputs/code-connect/arrow_forward.figma.ts new file mode 100644 index 00000000..51364230 --- /dev/null +++ b/outputs/code-connect/arrow_forward.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=247:570", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`arrow-forward`, +}); diff --git a/outputs/code-connect/arrow_up.figma.ts b/outputs/code-connect/arrow_up.figma.ts new file mode 100644 index 00000000..e3524aef --- /dev/null +++ b/outputs/code-connect/arrow_up.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=247:572", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`arrow-up`, +}); diff --git a/outputs/code-connect/attachment.figma.ts b/outputs/code-connect/attachment.figma.ts new file mode 100644 index 00000000..825274d1 --- /dev/null +++ b/outputs/code-connect/attachment.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1173", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`attachment`, +}); diff --git a/outputs/code-connect/audio.figma.ts b/outputs/code-connect/audio.figma.ts new file mode 100644 index 00000000..7f0291f8 --- /dev/null +++ b/outputs/code-connect/audio.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3370", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`audio`, +}); diff --git a/outputs/code-connect/audit_activity.figma.ts b/outputs/code-connect/audit_activity.figma.ts new file mode 100644 index 00000000..2ebb876b --- /dev/null +++ b/outputs/code-connect/audit_activity.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:36", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`audit-activity`, +}); diff --git a/outputs/code-connect/auto.figma.ts b/outputs/code-connect/auto.figma.ts new file mode 100644 index 00000000..477cc6e9 --- /dev/null +++ b/outputs/code-connect/auto.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1105:3170", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`auto`, +}); diff --git a/outputs/code-connect/auto_delete.figma.ts b/outputs/code-connect/auto_delete.figma.ts new file mode 100644 index 00000000..0e2c71d9 --- /dev/null +++ b/outputs/code-connect/auto_delete.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4376", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`auto-delete`, +}); diff --git a/outputs/code-connect/awb.figma.ts b/outputs/code-connect/awb.figma.ts new file mode 100644 index 00000000..ea370a8c --- /dev/null +++ b/outputs/code-connect/awb.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1108:3291", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`awb`, +}); diff --git a/outputs/code-connect/backspace.figma.ts b/outputs/code-connect/backspace.figma.ts new file mode 100644 index 00000000..c287e798 --- /dev/null +++ b/outputs/code-connect/backspace.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:724", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`backspace`, +}); diff --git a/outputs/code-connect/bad_mood.figma.ts b/outputs/code-connect/bad_mood.figma.ts new file mode 100644 index 00000000..ccf8cfcd --- /dev/null +++ b/outputs/code-connect/bad_mood.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1132", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bad-mood`, +}); diff --git a/outputs/code-connect/barcode.figma.ts b/outputs/code-connect/barcode.figma.ts new file mode 100644 index 00000000..a6691e79 --- /dev/null +++ b/outputs/code-connect/barcode.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1991", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`barcode`, +}); diff --git a/outputs/code-connect/barcode_bluetooth.figma.ts b/outputs/code-connect/barcode_bluetooth.figma.ts new file mode 100644 index 00000000..ce541b57 --- /dev/null +++ b/outputs/code-connect/barcode_bluetooth.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1926", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`barcode-bluetooth`, +}); diff --git a/outputs/code-connect/barcode_done.figma.ts b/outputs/code-connect/barcode_done.figma.ts new file mode 100644 index 00000000..12955587 --- /dev/null +++ b/outputs/code-connect/barcode_done.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2071", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`barcode-done`, +}); diff --git a/outputs/code-connect/barcode_image_scan.figma.ts b/outputs/code-connect/barcode_image_scan.figma.ts new file mode 100644 index 00000000..46d6cfbd --- /dev/null +++ b/outputs/code-connect/barcode_image_scan.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2086", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`barcode-image scan`, +}); diff --git a/outputs/code-connect/barcode_qr_code.figma.ts b/outputs/code-connect/barcode_qr_code.figma.ts new file mode 100644 index 00000000..b0564d03 --- /dev/null +++ b/outputs/code-connect/barcode_qr_code.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1956", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`barcode-qr code`, +}); diff --git a/outputs/code-connect/barcode_scanner_down.figma.ts b/outputs/code-connect/barcode_scanner_down.figma.ts new file mode 100644 index 00000000..22438899 --- /dev/null +++ b/outputs/code-connect/barcode_scanner_down.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1941", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`barcode-scanner down`, +}); diff --git a/outputs/code-connect/barcode_settings.figma.ts b/outputs/code-connect/barcode_settings.figma.ts new file mode 100644 index 00000000..2c569b98 --- /dev/null +++ b/outputs/code-connect/barcode_settings.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1911", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`barcode-settings`, +}); diff --git a/outputs/code-connect/basket.figma.ts b/outputs/code-connect/basket.figma.ts new file mode 100644 index 00000000..947f5ada --- /dev/null +++ b/outputs/code-connect/basket.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3402", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`basket`, +}); diff --git a/outputs/code-connect/battery.figma.ts b/outputs/code-connect/battery.figma.ts new file mode 100644 index 00000000..82ec74c2 --- /dev/null +++ b/outputs/code-connect/battery.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:787", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`battery`, +}); diff --git a/outputs/code-connect/battery_alert.figma.ts b/outputs/code-connect/battery_alert.figma.ts new file mode 100644 index 00000000..3b19a08e --- /dev/null +++ b/outputs/code-connect/battery_alert.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:786", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`battery-alert`, +}); diff --git a/outputs/code-connect/battery_charging.figma.ts b/outputs/code-connect/battery_charging.figma.ts new file mode 100644 index 00000000..69389730 --- /dev/null +++ b/outputs/code-connect/battery_charging.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:788", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`battery-charging`, +}); diff --git a/outputs/code-connect/block.figma.ts b/outputs/code-connect/block.figma.ts new file mode 100644 index 00000000..d78bbd95 --- /dev/null +++ b/outputs/code-connect/block.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1491", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`block`, +}); diff --git a/outputs/code-connect/block_content.figma.ts b/outputs/code-connect/block_content.figma.ts new file mode 100644 index 00000000..afc6ef91 --- /dev/null +++ b/outputs/code-connect/block_content.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:707", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`block-content`, +}); diff --git a/outputs/code-connect/blog.figma.ts b/outputs/code-connect/blog.figma.ts new file mode 100644 index 00000000..1813a659 --- /dev/null +++ b/outputs/code-connect/blog.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:2015", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`blog`, +}); diff --git a/outputs/code-connect/bluetooth.figma.ts b/outputs/code-connect/bluetooth.figma.ts new file mode 100644 index 00000000..09a831b5 --- /dev/null +++ b/outputs/code-connect/bluetooth.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:763", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bluetooth`, +}); diff --git a/outputs/code-connect/bluetooth_disabled.figma.ts b/outputs/code-connect/bluetooth_disabled.figma.ts new file mode 100644 index 00000000..e69f6203 --- /dev/null +++ b/outputs/code-connect/bluetooth_disabled.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:765", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bluetooth-disabled`, +}); diff --git a/outputs/code-connect/bluetooth_searching.figma.ts b/outputs/code-connect/bluetooth_searching.figma.ts new file mode 100644 index 00000000..b976aff9 --- /dev/null +++ b/outputs/code-connect/bluetooth_searching.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:764", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bluetooth-searching`, +}); diff --git a/outputs/code-connect/bold.figma.ts b/outputs/code-connect/bold.figma.ts new file mode 100644 index 00000000..65268f61 --- /dev/null +++ b/outputs/code-connect/bold.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1350", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bold`, +}); diff --git a/outputs/code-connect/bookmark.figma.ts b/outputs/code-connect/bookmark.figma.ts new file mode 100644 index 00000000..6f6e531d --- /dev/null +++ b/outputs/code-connect/bookmark.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4023", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bookmark`, +}); diff --git a/outputs/code-connect/bookmark_outline.figma.ts b/outputs/code-connect/bookmark_outline.figma.ts new file mode 100644 index 00000000..833757ed --- /dev/null +++ b/outputs/code-connect/bookmark_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4024", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bookmark-outline`, +}); diff --git a/outputs/code-connect/brightness.figma.ts b/outputs/code-connect/brightness.figma.ts new file mode 100644 index 00000000..1994b2c3 --- /dev/null +++ b/outputs/code-connect/brightness.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:784", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`brightness`, +}); diff --git a/outputs/code-connect/broadcast.figma.ts b/outputs/code-connect/broadcast.figma.ts new file mode 100644 index 00000000..9b338159 --- /dev/null +++ b/outputs/code-connect/broadcast.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:89", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`broadcast`, +}); diff --git a/outputs/code-connect/build.figma.ts b/outputs/code-connect/build.figma.ts new file mode 100644 index 00000000..d7f261c7 --- /dev/null +++ b/outputs/code-connect/build.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4021", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`build`, +}); diff --git a/outputs/code-connect/building.figma.ts b/outputs/code-connect/building.figma.ts new file mode 100644 index 00000000..0be72a1c --- /dev/null +++ b/outputs/code-connect/building.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:556", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`building`, +}); diff --git a/outputs/code-connect/bullet_list.figma.ts b/outputs/code-connect/bullet_list.figma.ts new file mode 100644 index 00000000..37d06540 --- /dev/null +++ b/outputs/code-connect/bullet_list.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1118", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bullet-list`, +}); diff --git a/outputs/code-connect/bus.figma.ts b/outputs/code-connect/bus.figma.ts new file mode 100644 index 00000000..9d59ee82 --- /dev/null +++ b/outputs/code-connect/bus.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1634", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`bus`, +}); diff --git a/outputs/code-connect/cached.figma.ts b/outputs/code-connect/cached.figma.ts new file mode 100644 index 00000000..2f8b14b3 --- /dev/null +++ b/outputs/code-connect/cached.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4158", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cached`, +}); diff --git a/outputs/code-connect/cafe.figma.ts b/outputs/code-connect/cafe.figma.ts new file mode 100644 index 00000000..39d5cf6e --- /dev/null +++ b/outputs/code-connect/cafe.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1650", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cafe`, +}); diff --git a/outputs/code-connect/calculator.figma.ts b/outputs/code-connect/calculator.figma.ts new file mode 100644 index 00000000..898e9667 --- /dev/null +++ b/outputs/code-connect/calculator.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:1985", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calculator`, +}); diff --git a/outputs/code-connect/calendar.figma.ts b/outputs/code-connect/calendar.figma.ts new file mode 100644 index 00000000..db77aef3 --- /dev/null +++ b/outputs/code-connect/calendar.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4181", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar`, +}); diff --git a/outputs/code-connect/calendar_3_day.figma.ts b/outputs/code-connect/calendar_3_day.figma.ts new file mode 100644 index 00000000..7a14bb44 --- /dev/null +++ b/outputs/code-connect/calendar_3_day.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4245", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-3 day`, +}); diff --git a/outputs/code-connect/calendar_alt_1.figma.ts b/outputs/code-connect/calendar_alt_1.figma.ts new file mode 100644 index 00000000..de268be0 --- /dev/null +++ b/outputs/code-connect/calendar_alt_1.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=787:1746", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-alt 1`, +}); diff --git a/outputs/code-connect/calendar_alt_2.figma.ts b/outputs/code-connect/calendar_alt_2.figma.ts new file mode 100644 index 00000000..52a2b591 --- /dev/null +++ b/outputs/code-connect/calendar_alt_2.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4246", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-alt 2`, +}); diff --git a/outputs/code-connect/calendar_available.figma.ts b/outputs/code-connect/calendar_available.figma.ts new file mode 100644 index 00000000..e9411095 --- /dev/null +++ b/outputs/code-connect/calendar_available.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4914:1860", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-available`, +}); diff --git a/outputs/code-connect/calendar_day.figma.ts b/outputs/code-connect/calendar_day.figma.ts new file mode 100644 index 00000000..eb8b1c40 --- /dev/null +++ b/outputs/code-connect/calendar_day.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=787:1772", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-day`, +}); diff --git a/outputs/code-connect/calendar_edit.figma.ts b/outputs/code-connect/calendar_edit.figma.ts new file mode 100644 index 00000000..c3a4d5a1 --- /dev/null +++ b/outputs/code-connect/calendar_edit.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4914:1914", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-edit`, +}); diff --git a/outputs/code-connect/calendar_gantt.figma.ts b/outputs/code-connect/calendar_gantt.figma.ts new file mode 100644 index 00000000..3943cb13 --- /dev/null +++ b/outputs/code-connect/calendar_gantt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3676", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-gantt`, +}); diff --git a/outputs/code-connect/calendar_monthly.figma.ts b/outputs/code-connect/calendar_monthly.figma.ts new file mode 100644 index 00000000..cdb64cda --- /dev/null +++ b/outputs/code-connect/calendar_monthly.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=787:1816", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-monthly`, +}); diff --git a/outputs/code-connect/calendar_next.figma.ts b/outputs/code-connect/calendar_next.figma.ts new file mode 100644 index 00000000..67b793b7 --- /dev/null +++ b/outputs/code-connect/calendar_next.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3673", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-next`, +}); diff --git a/outputs/code-connect/calendar_range.figma.ts b/outputs/code-connect/calendar_range.figma.ts new file mode 100644 index 00000000..eb638f30 --- /dev/null +++ b/outputs/code-connect/calendar_range.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4249", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-range`, +}); diff --git a/outputs/code-connect/calendar_rollover.figma.ts b/outputs/code-connect/calendar_rollover.figma.ts new file mode 100644 index 00000000..949acce6 --- /dev/null +++ b/outputs/code-connect/calendar_rollover.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3670", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-rollover`, +}); diff --git a/outputs/code-connect/calendar_unavailable.figma.ts b/outputs/code-connect/calendar_unavailable.figma.ts new file mode 100644 index 00000000..0b25e911 --- /dev/null +++ b/outputs/code-connect/calendar_unavailable.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4914:1820", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-unavailable`, +}); diff --git a/outputs/code-connect/calendar_weekly.figma.ts b/outputs/code-connect/calendar_weekly.figma.ts new file mode 100644 index 00000000..23701de5 --- /dev/null +++ b/outputs/code-connect/calendar_weekly.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=787:1797", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-weekly`, +}); diff --git a/outputs/code-connect/calendar_yearly.figma.ts b/outputs/code-connect/calendar_yearly.figma.ts new file mode 100644 index 00000000..294ce923 --- /dev/null +++ b/outputs/code-connect/calendar_yearly.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=787:1859", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`calendar-yearly`, +}); diff --git a/outputs/code-connect/call_back.figma.ts b/outputs/code-connect/call_back.figma.ts new file mode 100644 index 00000000..ff12557e --- /dev/null +++ b/outputs/code-connect/call_back.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=5130:226", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`call-back`, +}); diff --git a/outputs/code-connect/camera.figma.ts b/outputs/code-connect/camera.figma.ts new file mode 100644 index 00000000..669ecfea --- /dev/null +++ b/outputs/code-connect/camera.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1737", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`camera`, +}); diff --git a/outputs/code-connect/camera_shutter.figma.ts b/outputs/code-connect/camera_shutter.figma.ts new file mode 100644 index 00000000..51495961 --- /dev/null +++ b/outputs/code-connect/camera_shutter.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1743", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`camera-shutter`, +}); diff --git a/outputs/code-connect/camera_switch.figma.ts b/outputs/code-connect/camera_switch.figma.ts new file mode 100644 index 00000000..38b98a3f --- /dev/null +++ b/outputs/code-connect/camera_switch.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:553", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`camera-switch`, +}); diff --git a/outputs/code-connect/camera_switch_image.figma.ts b/outputs/code-connect/camera_switch_image.figma.ts new file mode 100644 index 00000000..e41c4f6c --- /dev/null +++ b/outputs/code-connect/camera_switch_image.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1741", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`camera-switch image`, +}); diff --git a/outputs/code-connect/cancel.figma.ts b/outputs/code-connect/cancel.figma.ts new file mode 100644 index 00000000..dbf5bb21 --- /dev/null +++ b/outputs/code-connect/cancel.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4812", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cancel`, +}); diff --git a/outputs/code-connect/cancel_outline.figma.ts b/outputs/code-connect/cancel_outline.figma.ts new file mode 100644 index 00000000..6505163d --- /dev/null +++ b/outputs/code-connect/cancel_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3768", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cancel-outline`, +}); diff --git a/outputs/code-connect/car.figma.ts b/outputs/code-connect/car.figma.ts new file mode 100644 index 00000000..53ffd91d --- /dev/null +++ b/outputs/code-connect/car.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1646", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`car`, +}); diff --git a/outputs/code-connect/card_orientation.figma.ts b/outputs/code-connect/card_orientation.figma.ts new file mode 100644 index 00000000..c4549523 --- /dev/null +++ b/outputs/code-connect/card_orientation.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:2013", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`card-orientation`, +}); diff --git a/outputs/code-connect/card_with_chip.figma.ts b/outputs/code-connect/card_with_chip.figma.ts new file mode 100644 index 00000000..3266ad50 --- /dev/null +++ b/outputs/code-connect/card_with_chip.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:2004", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`card-with chip`, +}); diff --git a/outputs/code-connect/caret_down.figma.ts b/outputs/code-connect/caret_down.figma.ts new file mode 100644 index 00000000..ca2b8ba6 --- /dev/null +++ b/outputs/code-connect/caret_down.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4823", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`caret-down`, +}); diff --git a/outputs/code-connect/caret_left.figma.ts b/outputs/code-connect/caret_left.figma.ts new file mode 100644 index 00000000..9108d291 --- /dev/null +++ b/outputs/code-connect/caret_left.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4825", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`caret-left`, +}); diff --git a/outputs/code-connect/caret_right.figma.ts b/outputs/code-connect/caret_right.figma.ts new file mode 100644 index 00000000..75b05512 --- /dev/null +++ b/outputs/code-connect/caret_right.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4826", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`caret-right`, +}); diff --git a/outputs/code-connect/caret_sort.figma.ts b/outputs/code-connect/caret_sort.figma.ts new file mode 100644 index 00000000..6fb7d096 --- /dev/null +++ b/outputs/code-connect/caret_sort.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=474:1634", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`caret-sort`, +}); diff --git a/outputs/code-connect/caret_up.figma.ts b/outputs/code-connect/caret_up.figma.ts new file mode 100644 index 00000000..f2a0ad61 --- /dev/null +++ b/outputs/code-connect/caret_up.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4824", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`caret-up`, +}); diff --git a/outputs/code-connect/cast.figma.ts b/outputs/code-connect/cast.figma.ts new file mode 100644 index 00000000..645bf5f2 --- /dev/null +++ b/outputs/code-connect/cast.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1494", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cast`, +}); diff --git a/outputs/code-connect/cast_connected.figma.ts b/outputs/code-connect/cast_connected.figma.ts new file mode 100644 index 00000000..bb0d8fcb --- /dev/null +++ b/outputs/code-connect/cast_connected.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1495", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cast-connected`, +}); diff --git a/outputs/code-connect/cellular_signal.figma.ts b/outputs/code-connect/cellular_signal.figma.ts new file mode 100644 index 00000000..d6fed48b --- /dev/null +++ b/outputs/code-connect/cellular_signal.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:774", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cellular-signal`, +}); diff --git a/outputs/code-connect/certificate.figma.ts b/outputs/code-connect/certificate.figma.ts new file mode 100644 index 00000000..137e9949 --- /dev/null +++ b/outputs/code-connect/certificate.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=844:2288", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`certificate`, +}); diff --git a/outputs/code-connect/certified.figma.ts b/outputs/code-connect/certified.figma.ts new file mode 100644 index 00000000..4a58864a --- /dev/null +++ b/outputs/code-connect/certified.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:35", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`certified`, +}); diff --git a/outputs/code-connect/chain.figma.ts b/outputs/code-connect/chain.figma.ts new file mode 100644 index 00000000..0dd37517 --- /dev/null +++ b/outputs/code-connect/chain.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2345", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chain`, +}); diff --git a/outputs/code-connect/chart_bar.figma.ts b/outputs/code-connect/chart_bar.figma.ts new file mode 100644 index 00000000..08b2dc4e --- /dev/null +++ b/outputs/code-connect/chart_bar.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3494", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-bar`, +}); diff --git a/outputs/code-connect/chart_bubble.figma.ts b/outputs/code-connect/chart_bubble.figma.ts new file mode 100644 index 00000000..300afde8 --- /dev/null +++ b/outputs/code-connect/chart_bubble.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3506", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-bubble`, +}); diff --git a/outputs/code-connect/chart_bubble_charts.figma.ts b/outputs/code-connect/chart_bubble_charts.figma.ts new file mode 100644 index 00000000..94574281 --- /dev/null +++ b/outputs/code-connect/chart_bubble_charts.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3512", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-bubble charts`, +}); diff --git a/outputs/code-connect/chart_doughnut.figma.ts b/outputs/code-connect/chart_doughnut.figma.ts new file mode 100644 index 00000000..ba33a412 --- /dev/null +++ b/outputs/code-connect/chart_doughnut.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3549", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-doughnut`, +}); diff --git a/outputs/code-connect/chart_filled.figma.ts b/outputs/code-connect/chart_filled.figma.ts new file mode 100644 index 00000000..08dba63f --- /dev/null +++ b/outputs/code-connect/chart_filled.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3529", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-filled`, +}); diff --git a/outputs/code-connect/chart_filled_enterprise.figma.ts b/outputs/code-connect/chart_filled_enterprise.figma.ts new file mode 100644 index 00000000..4c117fda --- /dev/null +++ b/outputs/code-connect/chart_filled_enterprise.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2147", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-filled enterprise`, +}); diff --git a/outputs/code-connect/chart_gantt.figma.ts b/outputs/code-connect/chart_gantt.figma.ts new file mode 100644 index 00000000..3f6a3bc8 --- /dev/null +++ b/outputs/code-connect/chart_gantt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3541", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-gantt`, +}); diff --git a/outputs/code-connect/chart_line.figma.ts b/outputs/code-connect/chart_line.figma.ts new file mode 100644 index 00000000..d323068e --- /dev/null +++ b/outputs/code-connect/chart_line.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3500", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-line`, +}); diff --git a/outputs/code-connect/chart_line_predict.figma.ts b/outputs/code-connect/chart_line_predict.figma.ts new file mode 100644 index 00000000..882453e5 --- /dev/null +++ b/outputs/code-connect/chart_line_predict.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3497", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-line predict`, +}); diff --git a/outputs/code-connect/chart_line_stacked.figma.ts b/outputs/code-connect/chart_line_stacked.figma.ts new file mode 100644 index 00000000..f56c3002 --- /dev/null +++ b/outputs/code-connect/chart_line_stacked.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3509", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-line stacked`, +}); diff --git a/outputs/code-connect/chart_outline.figma.ts b/outputs/code-connect/chart_outline.figma.ts new file mode 100644 index 00000000..db7c0f10 --- /dev/null +++ b/outputs/code-connect/chart_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3532", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-outline`, +}); diff --git a/outputs/code-connect/chart_pie.figma.ts b/outputs/code-connect/chart_pie.figma.ts new file mode 100644 index 00000000..2aaaefff --- /dev/null +++ b/outputs/code-connect/chart_pie.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3503", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-pie`, +}); diff --git a/outputs/code-connect/chart_pie_charts.figma.ts b/outputs/code-connect/chart_pie_charts.figma.ts new file mode 100644 index 00000000..bf3d9237 --- /dev/null +++ b/outputs/code-connect/chart_pie_charts.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3516", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-pie charts`, +}); diff --git a/outputs/code-connect/chart_pie_content.figma.ts b/outputs/code-connect/chart_pie_content.figma.ts new file mode 100644 index 00000000..80f75a5a --- /dev/null +++ b/outputs/code-connect/chart_pie_content.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=2657:3011", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-pie content`, +}); diff --git a/outputs/code-connect/chart_scatter_plot.figma.ts b/outputs/code-connect/chart_scatter_plot.figma.ts new file mode 100644 index 00000000..012d8a35 --- /dev/null +++ b/outputs/code-connect/chart_scatter_plot.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3558", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-scatter plot`, +}); diff --git a/outputs/code-connect/chart_stacked.figma.ts b/outputs/code-connect/chart_stacked.figma.ts new file mode 100644 index 00000000..7e30a058 --- /dev/null +++ b/outputs/code-connect/chart_stacked.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3546", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-stacked`, +}); diff --git a/outputs/code-connect/chart_waterfall.figma.ts b/outputs/code-connect/chart_waterfall.figma.ts new file mode 100644 index 00000000..ad407584 --- /dev/null +++ b/outputs/code-connect/chart_waterfall.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3519", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chart-waterfall`, +}); diff --git a/outputs/code-connect/chat.figma.ts b/outputs/code-connect/chat.figma.ts new file mode 100644 index 00000000..bdaa9f08 --- /dev/null +++ b/outputs/code-connect/chat.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3336", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chat`, +}); diff --git a/outputs/code-connect/chat_bot.figma.ts b/outputs/code-connect/chat_bot.figma.ts new file mode 100644 index 00000000..26d228a5 --- /dev/null +++ b/outputs/code-connect/chat_bot.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:334", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chat-bot`, +}); diff --git a/outputs/code-connect/chat_bubble.figma.ts b/outputs/code-connect/chat_bubble.figma.ts new file mode 100644 index 00000000..5cb91b29 --- /dev/null +++ b/outputs/code-connect/chat_bubble.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4530", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chat-bubble`, +}); diff --git a/outputs/code-connect/chat_bubble_outline.figma.ts b/outputs/code-connect/chat_bubble_outline.figma.ts new file mode 100644 index 00000000..2a50becf --- /dev/null +++ b/outputs/code-connect/chat_bubble_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4532", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chat-bubble outline`, +}); diff --git a/outputs/code-connect/chat_message_read.figma.ts b/outputs/code-connect/chat_message_read.figma.ts new file mode 100644 index 00000000..18e39e6b --- /dev/null +++ b/outputs/code-connect/chat_message_read.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:80", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chat-message read`, +}); diff --git a/outputs/code-connect/chat_message_unread.figma.ts b/outputs/code-connect/chat_message_unread.figma.ts new file mode 100644 index 00000000..67b9cdbd --- /dev/null +++ b/outputs/code-connect/chat_message_unread.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3329", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chat-message unread`, +}); diff --git a/outputs/code-connect/chat_search.figma.ts b/outputs/code-connect/chat_search.figma.ts new file mode 100644 index 00000000..a6caefb2 --- /dev/null +++ b/outputs/code-connect/chat_search.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3326", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chat-search`, +}); diff --git a/outputs/code-connect/check_box.figma.ts b/outputs/code-connect/check_box.figma.ts new file mode 100644 index 00000000..e2808e23 --- /dev/null +++ b/outputs/code-connect/check_box.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1589", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`check-box`, +}); diff --git a/outputs/code-connect/check_box_empty.figma.ts b/outputs/code-connect/check_box_empty.figma.ts new file mode 100644 index 00000000..74224087 --- /dev/null +++ b/outputs/code-connect/check_box_empty.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1591", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`check-box empty`, +}); diff --git a/outputs/code-connect/check_circle.figma.ts b/outputs/code-connect/check_circle.figma.ts new file mode 100644 index 00000000..3106daef --- /dev/null +++ b/outputs/code-connect/check_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3767", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`check-circle`, +}); diff --git a/outputs/code-connect/check_circle_outline.figma.ts b/outputs/code-connect/check_circle_outline.figma.ts new file mode 100644 index 00000000..36ea6ca3 --- /dev/null +++ b/outputs/code-connect/check_circle_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3769", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`check-circle outline`, +}); diff --git a/outputs/code-connect/check_circle_outline_alt.figma.ts b/outputs/code-connect/check_circle_outline_alt.figma.ts new file mode 100644 index 00000000..c1b69a20 --- /dev/null +++ b/outputs/code-connect/check_circle_outline_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4005", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`check-circle outline alt`, +}); diff --git a/outputs/code-connect/check_mark.figma.ts b/outputs/code-connect/check_mark.figma.ts new file mode 100644 index 00000000..d916cdec --- /dev/null +++ b/outputs/code-connect/check_mark.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3764", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`check-mark`, +}); diff --git a/outputs/code-connect/checklist.figma.ts b/outputs/code-connect/checklist.figma.ts new file mode 100644 index 00000000..26132f1d --- /dev/null +++ b/outputs/code-connect/checklist.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1115", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`checklist`, +}); diff --git a/outputs/code-connect/chevron_left.figma.ts b/outputs/code-connect/chevron_left.figma.ts new file mode 100644 index 00000000..5ff24f10 --- /dev/null +++ b/outputs/code-connect/chevron_left.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4819", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chevron-left`, +}); diff --git a/outputs/code-connect/chevron_right.figma.ts b/outputs/code-connect/chevron_right.figma.ts new file mode 100644 index 00000000..69516a81 --- /dev/null +++ b/outputs/code-connect/chevron_right.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4820", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`chevron-right`, +}); diff --git a/outputs/code-connect/choices.figma.ts b/outputs/code-connect/choices.figma.ts new file mode 100644 index 00000000..ab5641e4 --- /dev/null +++ b/outputs/code-connect/choices.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2230", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`choices`, +}); diff --git a/outputs/code-connect/clipboard.figma.ts b/outputs/code-connect/clipboard.figma.ts new file mode 100644 index 00000000..1470faf3 --- /dev/null +++ b/outputs/code-connect/clipboard.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:25", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clipboard`, +}); diff --git a/outputs/code-connect/clipboard_action.figma.ts b/outputs/code-connect/clipboard_action.figma.ts new file mode 100644 index 00000000..52627cc3 --- /dev/null +++ b/outputs/code-connect/clipboard_action.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4014", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clipboard-action`, +}); diff --git a/outputs/code-connect/clock.figma.ts b/outputs/code-connect/clock.figma.ts new file mode 100644 index 00000000..2af470be --- /dev/null +++ b/outputs/code-connect/clock.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4165", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock`, +}); diff --git a/outputs/code-connect/clock_available.figma.ts b/outputs/code-connect/clock_available.figma.ts new file mode 100644 index 00000000..615f09bc --- /dev/null +++ b/outputs/code-connect/clock_available.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3690", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-available`, +}); diff --git a/outputs/code-connect/clock_bid.figma.ts b/outputs/code-connect/clock_bid.figma.ts new file mode 100644 index 00000000..aa8d9450 --- /dev/null +++ b/outputs/code-connect/clock_bid.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3715", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-bid`, +}); diff --git a/outputs/code-connect/clock_edit.figma.ts b/outputs/code-connect/clock_edit.figma.ts new file mode 100644 index 00000000..40f08450 --- /dev/null +++ b/outputs/code-connect/clock_edit.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3718", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-edit`, +}); diff --git a/outputs/code-connect/clock_flexible.figma.ts b/outputs/code-connect/clock_flexible.figma.ts new file mode 100644 index 00000000..c59362f3 --- /dev/null +++ b/outputs/code-connect/clock_flexible.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3683", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-flexible`, +}); diff --git a/outputs/code-connect/clock_in_progress.figma.ts b/outputs/code-connect/clock_in_progress.figma.ts new file mode 100644 index 00000000..fe798622 --- /dev/null +++ b/outputs/code-connect/clock_in_progress.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3703", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-in progress`, +}); diff --git a/outputs/code-connect/clock_info.figma.ts b/outputs/code-connect/clock_info.figma.ts new file mode 100644 index 00000000..44070849 --- /dev/null +++ b/outputs/code-connect/clock_info.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3696", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-info`, +}); diff --git a/outputs/code-connect/clock_missed.figma.ts b/outputs/code-connect/clock_missed.figma.ts new file mode 100644 index 00000000..f6a7aaa7 --- /dev/null +++ b/outputs/code-connect/clock_missed.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3693", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-missed`, +}); diff --git a/outputs/code-connect/clock_on.figma.ts b/outputs/code-connect/clock_on.figma.ts new file mode 100644 index 00000000..cdfdef7c --- /dev/null +++ b/outputs/code-connect/clock_on.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3686", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-on`, +}); diff --git a/outputs/code-connect/clock_outline.figma.ts b/outputs/code-connect/clock_outline.figma.ts new file mode 100644 index 00000000..2ca42b1c --- /dev/null +++ b/outputs/code-connect/clock_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3854", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-outline`, +}); diff --git a/outputs/code-connect/clock_rollover.figma.ts b/outputs/code-connect/clock_rollover.figma.ts new file mode 100644 index 00000000..87626e0e --- /dev/null +++ b/outputs/code-connect/clock_rollover.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3723", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-rollover`, +}); diff --git a/outputs/code-connect/clock_segment.figma.ts b/outputs/code-connect/clock_segment.figma.ts new file mode 100644 index 00000000..cc260e6d --- /dev/null +++ b/outputs/code-connect/clock_segment.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3729", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-segment`, +}); diff --git a/outputs/code-connect/clock_start.figma.ts b/outputs/code-connect/clock_start.figma.ts new file mode 100644 index 00000000..d8a89d8a --- /dev/null +++ b/outputs/code-connect/clock_start.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3699", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-start`, +}); diff --git a/outputs/code-connect/clock_stop.figma.ts b/outputs/code-connect/clock_stop.figma.ts new file mode 100644 index 00000000..8d765fb5 --- /dev/null +++ b/outputs/code-connect/clock_stop.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3706", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-stop`, +}); diff --git a/outputs/code-connect/clock_switch.figma.ts b/outputs/code-connect/clock_switch.figma.ts new file mode 100644 index 00000000..7054ac45 --- /dev/null +++ b/outputs/code-connect/clock_switch.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3712", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-switch`, +}); diff --git a/outputs/code-connect/clock_timer.figma.ts b/outputs/code-connect/clock_timer.figma.ts new file mode 100644 index 00000000..b0a693a2 --- /dev/null +++ b/outputs/code-connect/clock_timer.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3726", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-timer`, +}); diff --git a/outputs/code-connect/clock_upcoming.figma.ts b/outputs/code-connect/clock_upcoming.figma.ts new file mode 100644 index 00000000..cc25fb4d --- /dev/null +++ b/outputs/code-connect/clock_upcoming.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3709", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`clock-upcoming`, +}); diff --git a/outputs/code-connect/close.figma.ts b/outputs/code-connect/close.figma.ts new file mode 100644 index 00000000..c889604a --- /dev/null +++ b/outputs/code-connect/close.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4815", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`close`, +}); diff --git a/outputs/code-connect/closed_caption.figma.ts b/outputs/code-connect/closed_caption.figma.ts new file mode 100644 index 00000000..30a88946 --- /dev/null +++ b/outputs/code-connect/closed_caption.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:966", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`closed-caption`, +}); diff --git a/outputs/code-connect/cloud.figma.ts b/outputs/code-connect/cloud.figma.ts new file mode 100644 index 00000000..5acfb37b --- /dev/null +++ b/outputs/code-connect/cloud.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1338", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cloud`, +}); diff --git a/outputs/code-connect/cloud_done.figma.ts b/outputs/code-connect/cloud_done.figma.ts new file mode 100644 index 00000000..c4577b9e --- /dev/null +++ b/outputs/code-connect/cloud_done.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1339", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cloud-done`, +}); diff --git a/outputs/code-connect/cloud_download.figma.ts b/outputs/code-connect/cloud_download.figma.ts new file mode 100644 index 00000000..f8d256bb --- /dev/null +++ b/outputs/code-connect/cloud_download.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1340", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cloud-download`, +}); diff --git a/outputs/code-connect/cloud_off.figma.ts b/outputs/code-connect/cloud_off.figma.ts new file mode 100644 index 00000000..ec673748 --- /dev/null +++ b/outputs/code-connect/cloud_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1351", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cloud-off`, +}); diff --git a/outputs/code-connect/cloud_outline.figma.ts b/outputs/code-connect/cloud_outline.figma.ts new file mode 100644 index 00000000..00a73757 --- /dev/null +++ b/outputs/code-connect/cloud_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1341", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cloud-outline`, +}); diff --git a/outputs/code-connect/cloud_upload.figma.ts b/outputs/code-connect/cloud_upload.figma.ts new file mode 100644 index 00000000..bef479f3 --- /dev/null +++ b/outputs/code-connect/cloud_upload.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1342", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`cloud-upload`, +}); diff --git a/outputs/code-connect/color_fill.figma.ts b/outputs/code-connect/color_fill.figma.ts new file mode 100644 index 00000000..51b6e7ad --- /dev/null +++ b/outputs/code-connect/color_fill.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1354", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`color-fill`, +}); diff --git a/outputs/code-connect/columns.figma.ts b/outputs/code-connect/columns.figma.ts new file mode 100644 index 00000000..37842fe6 --- /dev/null +++ b/outputs/code-connect/columns.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=652:1635", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`columns`, +}); diff --git a/outputs/code-connect/contactless_pay.figma.ts b/outputs/code-connect/contactless_pay.figma.ts new file mode 100644 index 00000000..52ae8ccd --- /dev/null +++ b/outputs/code-connect/contactless_pay.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:2031", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`contactless-pay`, +}); diff --git a/outputs/code-connect/content.figma.ts b/outputs/code-connect/content.figma.ts new file mode 100644 index 00000000..31af3aee --- /dev/null +++ b/outputs/code-connect/content.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:710", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`content`, +}); diff --git a/outputs/code-connect/contrast.figma.ts b/outputs/code-connect/contrast.figma.ts new file mode 100644 index 00000000..b793c3f2 --- /dev/null +++ b/outputs/code-connect/contrast.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2204", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`contrast`, +}); diff --git a/outputs/code-connect/contrast_image.figma.ts b/outputs/code-connect/contrast_image.figma.ts new file mode 100644 index 00000000..7c4d2272 --- /dev/null +++ b/outputs/code-connect/contrast_image.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1747", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`contrast-image`, +}); diff --git a/outputs/code-connect/conversation.figma.ts b/outputs/code-connect/conversation.figma.ts new file mode 100644 index 00000000..c8607103 --- /dev/null +++ b/outputs/code-connect/conversation.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4015", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`conversation`, +}); diff --git a/outputs/code-connect/copy_file.figma.ts b/outputs/code-connect/copy_file.figma.ts new file mode 100644 index 00000000..5699ffbc --- /dev/null +++ b/outputs/code-connect/copy_file.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:711", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`copy-file`, +}); diff --git a/outputs/code-connect/create_new_folder.figma.ts b/outputs/code-connect/create_new_folder.figma.ts new file mode 100644 index 00000000..cdd35ed4 --- /dev/null +++ b/outputs/code-connect/create_new_folder.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1354", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`create-new folder`, +}); diff --git a/outputs/code-connect/credit_card.figma.ts b/outputs/code-connect/credit_card.figma.ts new file mode 100644 index 00000000..45e5b989 --- /dev/null +++ b/outputs/code-connect/credit_card.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4252", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`credit-card`, +}); diff --git a/outputs/code-connect/credit_card_swipe.figma.ts b/outputs/code-connect/credit_card_swipe.figma.ts new file mode 100644 index 00000000..1bbb489b --- /dev/null +++ b/outputs/code-connect/credit_card_swipe.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=839:2023", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`credit-card swipe`, +}); diff --git a/outputs/code-connect/crop.figma.ts b/outputs/code-connect/crop.figma.ts new file mode 100644 index 00000000..6411d4d3 --- /dev/null +++ b/outputs/code-connect/crop.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1754", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`crop`, +}); diff --git a/outputs/code-connect/dark_mode.figma.ts b/outputs/code-connect/dark_mode.figma.ts new file mode 100644 index 00000000..e7af9201 --- /dev/null +++ b/outputs/code-connect/dark_mode.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:769", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`dark-mode`, +}); diff --git a/outputs/code-connect/dashboard.figma.ts b/outputs/code-connect/dashboard.figma.ts new file mode 100644 index 00000000..0595a1bb --- /dev/null +++ b/outputs/code-connect/dashboard.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=645:1661", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`dashboard`, +}); diff --git a/outputs/code-connect/delete.figma.ts b/outputs/code-connect/delete.figma.ts new file mode 100644 index 00000000..4fd203c5 --- /dev/null +++ b/outputs/code-connect/delete.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4166", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`delete`, +}); diff --git a/outputs/code-connect/delete_forever.figma.ts b/outputs/code-connect/delete_forever.figma.ts new file mode 100644 index 00000000..7d67c98d --- /dev/null +++ b/outputs/code-connect/delete_forever.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4020", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`delete-forever`, +}); diff --git a/outputs/code-connect/delete_outline.figma.ts b/outputs/code-connect/delete_outline.figma.ts new file mode 100644 index 00000000..c0025221 --- /dev/null +++ b/outputs/code-connect/delete_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4167", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`delete-outline`, +}); diff --git a/outputs/code-connect/desktop.figma.ts b/outputs/code-connect/desktop.figma.ts new file mode 100644 index 00000000..dc4169fd --- /dev/null +++ b/outputs/code-connect/desktop.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1496", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`desktop`, +}); diff --git a/outputs/code-connect/device_settings.figma.ts b/outputs/code-connect/device_settings.figma.ts new file mode 100644 index 00000000..34773c65 --- /dev/null +++ b/outputs/code-connect/device_settings.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=648:1678", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`device-settings`, +}); diff --git a/outputs/code-connect/devices.figma.ts b/outputs/code-connect/devices.figma.ts new file mode 100644 index 00000000..40ef9e62 --- /dev/null +++ b/outputs/code-connect/devices.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:781", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`devices`, +}); diff --git a/outputs/code-connect/devices_ecosystem.figma.ts b/outputs/code-connect/devices_ecosystem.figma.ts new file mode 100644 index 00000000..c81bf1e7 --- /dev/null +++ b/outputs/code-connect/devices_ecosystem.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1497", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`devices-ecosystem`, +}); diff --git a/outputs/code-connect/dialpad.figma.ts b/outputs/code-connect/dialpad.figma.ts new file mode 100644 index 00000000..f2b77c58 --- /dev/null +++ b/outputs/code-connect/dialpad.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=858:1973", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`dialpad`, +}); diff --git a/outputs/code-connect/dislike.figma.ts b/outputs/code-connect/dislike.figma.ts new file mode 100644 index 00000000..bb355efd --- /dev/null +++ b/outputs/code-connect/dislike.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3861", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`dislike`, +}); diff --git a/outputs/code-connect/distribute_horizontal.figma.ts b/outputs/code-connect/distribute_horizontal.figma.ts new file mode 100644 index 00000000..493dacfe --- /dev/null +++ b/outputs/code-connect/distribute_horizontal.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1120", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`distribute-horizontal`, +}); diff --git a/outputs/code-connect/distribute_vertical.figma.ts b/outputs/code-connect/distribute_vertical.figma.ts new file mode 100644 index 00000000..5cd64a39 --- /dev/null +++ b/outputs/code-connect/distribute_vertical.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1119", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`distribute-vertical`, +}); diff --git a/outputs/code-connect/doc_attach.figma.ts b/outputs/code-connect/doc_attach.figma.ts new file mode 100644 index 00000000..61787907 --- /dev/null +++ b/outputs/code-connect/doc_attach.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1363", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`doc-attach`, +}); diff --git a/outputs/code-connect/document.figma.ts b/outputs/code-connect/document.figma.ts new file mode 100644 index 00000000..7f4f6a2f --- /dev/null +++ b/outputs/code-connect/document.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4159", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`document`, +}); diff --git a/outputs/code-connect/dollar.figma.ts b/outputs/code-connect/dollar.figma.ts new file mode 100644 index 00000000..3b141ba7 --- /dev/null +++ b/outputs/code-connect/dollar.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=2661:3027", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`dollar`, +}); diff --git a/outputs/code-connect/download.figma.ts b/outputs/code-connect/download.figma.ts new file mode 100644 index 00000000..7c25fa96 --- /dev/null +++ b/outputs/code-connect/download.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4172", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`download`, +}); diff --git a/outputs/code-connect/downloading.figma.ts b/outputs/code-connect/downloading.figma.ts new file mode 100644 index 00000000..17e1374b --- /dev/null +++ b/outputs/code-connect/downloading.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1336", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`downloading`, +}); diff --git a/outputs/code-connect/drop_down_circle.figma.ts b/outputs/code-connect/drop_down_circle.figma.ts new file mode 100644 index 00000000..73e16651 --- /dev/null +++ b/outputs/code-connect/drop_down_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4814", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`drop-down circle`, +}); diff --git a/outputs/code-connect/eas.figma.ts b/outputs/code-connect/eas.figma.ts new file mode 100644 index 00000000..06221b78 --- /dev/null +++ b/outputs/code-connect/eas.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2176", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`eas`, +}); diff --git a/outputs/code-connect/edit.figma.ts b/outputs/code-connect/edit.figma.ts new file mode 100644 index 00000000..415c4a65 --- /dev/null +++ b/outputs/code-connect/edit.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1352", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`edit`, +}); diff --git a/outputs/code-connect/edit_border.figma.ts b/outputs/code-connect/edit_border.figma.ts new file mode 100644 index 00000000..3b944b61 --- /dev/null +++ b/outputs/code-connect/edit_border.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1171", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`edit-border`, +}); diff --git a/outputs/code-connect/email.figma.ts b/outputs/code-connect/email.figma.ts new file mode 100644 index 00000000..ef28ad6e --- /dev/null +++ b/outputs/code-connect/email.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4533", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`email`, +}); diff --git a/outputs/code-connect/email_alt.figma.ts b/outputs/code-connect/email_alt.figma.ts new file mode 100644 index 00000000..f8a6b510 --- /dev/null +++ b/outputs/code-connect/email_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4519", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`email-alt`, +}); diff --git a/outputs/code-connect/email_outline.figma.ts b/outputs/code-connect/email_outline.figma.ts new file mode 100644 index 00000000..9dec65b4 --- /dev/null +++ b/outputs/code-connect/email_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4535", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`email-outline`, +}); diff --git a/outputs/code-connect/email_reply_all.figma.ts b/outputs/code-connect/email_reply_all.figma.ts new file mode 100644 index 00000000..d31327cc --- /dev/null +++ b/outputs/code-connect/email_reply_all.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:71", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`email-reply all`, +}); diff --git a/outputs/code-connect/end_call.figma.ts b/outputs/code-connect/end_call.figma.ts new file mode 100644 index 00000000..d54abebf --- /dev/null +++ b/outputs/code-connect/end_call.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=858:1994", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`end-call`, +}); diff --git a/outputs/code-connect/enterprise_diagnostics.figma.ts b/outputs/code-connect/enterprise_diagnostics.figma.ts new file mode 100644 index 00000000..f7c8927b --- /dev/null +++ b/outputs/code-connect/enterprise_diagnostics.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2165", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`enterprise-diagnostics`, +}); diff --git a/outputs/code-connect/environmental.figma.ts b/outputs/code-connect/environmental.figma.ts new file mode 100644 index 00000000..1a03f063 --- /dev/null +++ b/outputs/code-connect/environmental.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=844:2271", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`environmental`, +}); diff --git a/outputs/code-connect/error.figma.ts b/outputs/code-connect/error.figma.ts new file mode 100644 index 00000000..a832b23a --- /dev/null +++ b/outputs/code-connect/error.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4377", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`error`, +}); diff --git a/outputs/code-connect/error_outline.figma.ts b/outputs/code-connect/error_outline.figma.ts new file mode 100644 index 00000000..2538af4e --- /dev/null +++ b/outputs/code-connect/error_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4379", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`error-outline`, +}); diff --git a/outputs/code-connect/ethernet.figma.ts b/outputs/code-connect/ethernet.figma.ts new file mode 100644 index 00000000..3572bd2e --- /dev/null +++ b/outputs/code-connect/ethernet.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2189", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`ethernet`, +}); diff --git a/outputs/code-connect/exit.figma.ts b/outputs/code-connect/exit.figma.ts new file mode 100644 index 00000000..5e87fc95 --- /dev/null +++ b/outputs/code-connect/exit.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:538", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`exit`, +}); diff --git a/outputs/code-connect/expand_less.figma.ts b/outputs/code-connect/expand_less.figma.ts new file mode 100644 index 00000000..760f8531 --- /dev/null +++ b/outputs/code-connect/expand_less.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4821", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`expand-less`, +}); diff --git a/outputs/code-connect/expand_more.figma.ts b/outputs/code-connect/expand_more.figma.ts new file mode 100644 index 00000000..eab92d39 --- /dev/null +++ b/outputs/code-connect/expand_more.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4822", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`expand-more`, +}); diff --git a/outputs/code-connect/eye_dropper.figma.ts b/outputs/code-connect/eye_dropper.figma.ts new file mode 100644 index 00000000..1ffe6d9d --- /dev/null +++ b/outputs/code-connect/eye_dropper.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1746", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`eye-dropper`, +}); diff --git a/outputs/code-connect/eye_preview.figma.ts b/outputs/code-connect/eye_preview.figma.ts new file mode 100644 index 00000000..4a595681 --- /dev/null +++ b/outputs/code-connect/eye_preview.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:501", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`eye-preview`, +}); diff --git a/outputs/code-connect/face_id.figma.ts b/outputs/code-connect/face_id.figma.ts new file mode 100644 index 00000000..76aa0b60 --- /dev/null +++ b/outputs/code-connect/face_id.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:49", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`face-id`, +}); diff --git a/outputs/code-connect/facebook.figma.ts b/outputs/code-connect/facebook.figma.ts new file mode 100644 index 00000000..94271c81 --- /dev/null +++ b/outputs/code-connect/facebook.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:1991", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`facebook`, +}); diff --git a/outputs/code-connect/factory.figma.ts b/outputs/code-connect/factory.figma.ts new file mode 100644 index 00000000..cfbb93cd --- /dev/null +++ b/outputs/code-connect/factory.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2101", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`factory`, +}); diff --git a/outputs/code-connect/fast_forward.figma.ts b/outputs/code-connect/fast_forward.figma.ts new file mode 100644 index 00000000..b3f5e7c8 --- /dev/null +++ b/outputs/code-connect/fast_forward.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:951", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`fast-forward`, +}); diff --git a/outputs/code-connect/fast_rewind.figma.ts b/outputs/code-connect/fast_rewind.figma.ts new file mode 100644 index 00000000..60655aef --- /dev/null +++ b/outputs/code-connect/fast_rewind.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:952", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`fast-rewind`, +}); diff --git a/outputs/code-connect/file.figma.ts b/outputs/code-connect/file.figma.ts new file mode 100644 index 00000000..26cde7d2 --- /dev/null +++ b/outputs/code-connect/file.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3358", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`file`, +}); diff --git a/outputs/code-connect/filter.figma.ts b/outputs/code-connect/filter.figma.ts new file mode 100644 index 00000000..bc662a41 --- /dev/null +++ b/outputs/code-connect/filter.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3858", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`filter`, +}); diff --git a/outputs/code-connect/filter_alt.figma.ts b/outputs/code-connect/filter_alt.figma.ts new file mode 100644 index 00000000..7c9e24a0 --- /dev/null +++ b/outputs/code-connect/filter_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1890", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`filter-alt`, +}); diff --git a/outputs/code-connect/finished_download.figma.ts b/outputs/code-connect/finished_download.figma.ts new file mode 100644 index 00000000..6dd15609 --- /dev/null +++ b/outputs/code-connect/finished_download.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1335", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`finished-download`, +}); diff --git a/outputs/code-connect/first_page.figma.ts b/outputs/code-connect/first_page.figma.ts new file mode 100644 index 00000000..e525c780 --- /dev/null +++ b/outputs/code-connect/first_page.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=550:1640", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`first-page`, +}); diff --git a/outputs/code-connect/flag.figma.ts b/outputs/code-connect/flag.figma.ts new file mode 100644 index 00000000..52f20806 --- /dev/null +++ b/outputs/code-connect/flag.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:727", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`flag`, +}); diff --git a/outputs/code-connect/flight.figma.ts b/outputs/code-connect/flight.figma.ts new file mode 100644 index 00000000..f53cb537 --- /dev/null +++ b/outputs/code-connect/flight.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1649", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`flight`, +}); diff --git a/outputs/code-connect/flight_mode.figma.ts b/outputs/code-connect/flight_mode.figma.ts new file mode 100644 index 00000000..be62a120 --- /dev/null +++ b/outputs/code-connect/flight_mode.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:789", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`flight-mode`, +}); diff --git a/outputs/code-connect/flip.figma.ts b/outputs/code-connect/flip.figma.ts new file mode 100644 index 00000000..e20458bd --- /dev/null +++ b/outputs/code-connect/flip.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:541", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`flip`, +}); diff --git a/outputs/code-connect/folder.figma.ts b/outputs/code-connect/folder.figma.ts new file mode 100644 index 00000000..bedb4c24 --- /dev/null +++ b/outputs/code-connect/folder.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1353", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`folder`, +}); diff --git a/outputs/code-connect/folder_file.figma.ts b/outputs/code-connect/folder_file.figma.ts new file mode 100644 index 00000000..ef4df281 --- /dev/null +++ b/outputs/code-connect/folder_file.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3361", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`folder-file`, +}); diff --git a/outputs/code-connect/folder_outline.figma.ts b/outputs/code-connect/folder_outline.figma.ts new file mode 100644 index 00000000..314ae3ff --- /dev/null +++ b/outputs/code-connect/folder_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1355", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`folder-outline`, +}); diff --git a/outputs/code-connect/font_size_decrease.figma.ts b/outputs/code-connect/font_size_decrease.figma.ts new file mode 100644 index 00000000..5297ba72 --- /dev/null +++ b/outputs/code-connect/font_size_decrease.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1348", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`font-size decrease`, +}); diff --git a/outputs/code-connect/font_size_increase.figma.ts b/outputs/code-connect/font_size_increase.figma.ts new file mode 100644 index 00000000..48083a7c --- /dev/null +++ b/outputs/code-connect/font_size_increase.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1349", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`font-size increase`, +}); diff --git a/outputs/code-connect/format_shapes.figma.ts b/outputs/code-connect/format_shapes.figma.ts new file mode 100644 index 00000000..cf36b5e8 --- /dev/null +++ b/outputs/code-connect/format_shapes.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1172", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`format-shapes`, +}); diff --git a/outputs/code-connect/forward.figma.ts b/outputs/code-connect/forward.figma.ts new file mode 100644 index 00000000..5a2541b5 --- /dev/null +++ b/outputs/code-connect/forward.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:74", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`forward`, +}); diff --git a/outputs/code-connect/freezer.figma.ts b/outputs/code-connect/freezer.figma.ts new file mode 100644 index 00000000..482547f8 --- /dev/null +++ b/outputs/code-connect/freezer.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=844:2320", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`freezer`, +}); diff --git a/outputs/code-connect/full_screen.figma.ts b/outputs/code-connect/full_screen.figma.ts new file mode 100644 index 00000000..2932e2ac --- /dev/null +++ b/outputs/code-connect/full_screen.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4829", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`full-screen`, +}); diff --git a/outputs/code-connect/full_screen_exit.figma.ts b/outputs/code-connect/full_screen_exit.figma.ts new file mode 100644 index 00000000..49701700 --- /dev/null +++ b/outputs/code-connect/full_screen_exit.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4827", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`full-screen exit`, +}); diff --git a/outputs/code-connect/gif.figma.ts b/outputs/code-connect/gif.figma.ts new file mode 100644 index 00000000..35d25b58 --- /dev/null +++ b/outputs/code-connect/gif.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:338", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`gif`, +}); diff --git a/outputs/code-connect/glossary.figma.ts b/outputs/code-connect/glossary.figma.ts new file mode 100644 index 00000000..7d51c065 --- /dev/null +++ b/outputs/code-connect/glossary.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:516", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`glossary`, +}); diff --git a/outputs/code-connect/grid_off.figma.ts b/outputs/code-connect/grid_off.figma.ts new file mode 100644 index 00000000..9a9d283c --- /dev/null +++ b/outputs/code-connect/grid_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1757", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`grid-off`, +}); diff --git a/outputs/code-connect/grid_on.figma.ts b/outputs/code-connect/grid_on.figma.ts new file mode 100644 index 00000000..da7b0a3f --- /dev/null +++ b/outputs/code-connect/grid_on.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1756", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`grid-on`, +}); diff --git a/outputs/code-connect/grid_view.figma.ts b/outputs/code-connect/grid_view.figma.ts new file mode 100644 index 00000000..ef5b204a --- /dev/null +++ b/outputs/code-connect/grid_view.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1357", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`grid-view`, +}); diff --git a/outputs/code-connect/group.figma.ts b/outputs/code-connect/group.figma.ts new file mode 100644 index 00000000..d0092870 --- /dev/null +++ b/outputs/code-connect/group.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1121", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`group`, +}); diff --git a/outputs/code-connect/groups.figma.ts b/outputs/code-connect/groups.figma.ts new file mode 100644 index 00000000..0891ab7e --- /dev/null +++ b/outputs/code-connect/groups.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1124", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`groups`, +}); diff --git a/outputs/code-connect/hamburger_menu.figma.ts b/outputs/code-connect/hamburger_menu.figma.ts new file mode 100644 index 00000000..954dce8a --- /dev/null +++ b/outputs/code-connect/hamburger_menu.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4830", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`hamburger-menu`, +}); diff --git a/outputs/code-connect/hamburger_menu_navigation_rail.figma.ts b/outputs/code-connect/hamburger_menu_navigation_rail.figma.ts new file mode 100644 index 00000000..dfb8d9ee --- /dev/null +++ b/outputs/code-connect/hamburger_menu_navigation_rail.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=662:1862", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`hamburger-menu navigation rail`, +}); diff --git a/outputs/code-connect/hamburger_menu_thick.figma.ts b/outputs/code-connect/hamburger_menu_thick.figma.ts new file mode 100644 index 00000000..2f702655 --- /dev/null +++ b/outputs/code-connect/hamburger_menu_thick.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=662:1869", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`hamburger-menu thick`, +}); diff --git a/outputs/code-connect/hand.figma.ts b/outputs/code-connect/hand.figma.ts new file mode 100644 index 00000000..469cf90d --- /dev/null +++ b/outputs/code-connect/hand.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1843", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`hand`, +}); diff --git a/outputs/code-connect/happy.figma.ts b/outputs/code-connect/happy.figma.ts new file mode 100644 index 00000000..1e9d5248 --- /dev/null +++ b/outputs/code-connect/happy.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1133", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`happy`, +}); diff --git a/outputs/code-connect/hdmi.figma.ts b/outputs/code-connect/hdmi.figma.ts new file mode 100644 index 00000000..f9d2dbb1 --- /dev/null +++ b/outputs/code-connect/hdmi.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:1827", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`hdmi`, +}); diff --git a/outputs/code-connect/hdr.figma.ts b/outputs/code-connect/hdr.figma.ts new file mode 100644 index 00000000..d9e232d6 --- /dev/null +++ b/outputs/code-connect/hdr.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1103:2965", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`hdr`, +}); diff --git a/outputs/code-connect/headphones.figma.ts b/outputs/code-connect/headphones.figma.ts new file mode 100644 index 00000000..d1d2c53a --- /dev/null +++ b/outputs/code-connect/headphones.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1498", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`headphones`, +}); diff --git a/outputs/code-connect/headset.figma.ts b/outputs/code-connect/headset.figma.ts new file mode 100644 index 00000000..a2479ef2 --- /dev/null +++ b/outputs/code-connect/headset.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3367", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`headset`, +}); diff --git a/outputs/code-connect/help.figma.ts b/outputs/code-connect/help.figma.ts new file mode 100644 index 00000000..7a1c44cf --- /dev/null +++ b/outputs/code-connect/help.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4168", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`help`, +}); diff --git a/outputs/code-connect/help_outline.figma.ts b/outputs/code-connect/help_outline.figma.ts new file mode 100644 index 00000000..ca0c0031 --- /dev/null +++ b/outputs/code-connect/help_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3856", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`help-outline`, +}); diff --git a/outputs/code-connect/history.figma.ts b/outputs/code-connect/history.figma.ts new file mode 100644 index 00000000..3ead1c2c --- /dev/null +++ b/outputs/code-connect/history.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4009", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`history`, +}); diff --git a/outputs/code-connect/home.figma.ts b/outputs/code-connect/home.figma.ts new file mode 100644 index 00000000..47b3d5a2 --- /dev/null +++ b/outputs/code-connect/home.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=240:33", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`home`, +}); diff --git a/outputs/code-connect/hourglass.figma.ts b/outputs/code-connect/hourglass.figma.ts new file mode 100644 index 00000000..c397dd90 --- /dev/null +++ b/outputs/code-connect/hourglass.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3408", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`hourglass`, +}); diff --git a/outputs/code-connect/how_do_i.figma.ts b/outputs/code-connect/how_do_i.figma.ts new file mode 100644 index 00000000..39e4df55 --- /dev/null +++ b/outputs/code-connect/how_do_i.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:525", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`how-do i`, +}); diff --git a/outputs/code-connect/image.figma.ts b/outputs/code-connect/image.figma.ts new file mode 100644 index 00000000..c8323410 --- /dev/null +++ b/outputs/code-connect/image.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1745", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`image`, +}); diff --git a/outputs/code-connect/image_library.figma.ts b/outputs/code-connect/image_library.figma.ts new file mode 100644 index 00000000..b35aa4ef --- /dev/null +++ b/outputs/code-connect/image_library.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1744", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`image-library`, +}); diff --git a/outputs/code-connect/important_notification.figma.ts b/outputs/code-connect/important_notification.figma.ts new file mode 100644 index 00000000..bac3eef8 --- /dev/null +++ b/outputs/code-connect/important_notification.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4380", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`important-notification`, +}); diff --git a/outputs/code-connect/inbox.figma.ts b/outputs/code-connect/inbox.figma.ts new file mode 100644 index 00000000..369630e8 --- /dev/null +++ b/outputs/code-connect/inbox.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:92", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`inbox`, +}); diff --git a/outputs/code-connect/indent_decrease.figma.ts b/outputs/code-connect/indent_decrease.figma.ts new file mode 100644 index 00000000..f686d2c5 --- /dev/null +++ b/outputs/code-connect/indent_decrease.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1116", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`indent-decrease`, +}); diff --git a/outputs/code-connect/indent_increase.figma.ts b/outputs/code-connect/indent_increase.figma.ts new file mode 100644 index 00000000..7c470493 --- /dev/null +++ b/outputs/code-connect/indent_increase.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1117", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`indent-increase`, +}); diff --git a/outputs/code-connect/indeterminate_check_box.figma.ts b/outputs/code-connect/indeterminate_check_box.figma.ts new file mode 100644 index 00000000..08c48964 --- /dev/null +++ b/outputs/code-connect/indeterminate_check_box.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1592", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`indeterminate-check box`, +}); diff --git a/outputs/code-connect/info.figma.ts b/outputs/code-connect/info.figma.ts new file mode 100644 index 00000000..63479521 --- /dev/null +++ b/outputs/code-connect/info.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3765", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`info`, +}); diff --git a/outputs/code-connect/instagram.figma.ts b/outputs/code-connect/instagram.figma.ts new file mode 100644 index 00000000..dbb99164 --- /dev/null +++ b/outputs/code-connect/instagram.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:1976", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`instagram`, +}); diff --git a/outputs/code-connect/ios_share.figma.ts b/outputs/code-connect/ios_share.figma.ts new file mode 100644 index 00000000..dcdc2c16 --- /dev/null +++ b/outputs/code-connect/ios_share.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1125", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`ios-share`, +}); diff --git a/outputs/code-connect/iso.figma.ts b/outputs/code-connect/iso.figma.ts new file mode 100644 index 00000000..04b4a3ab --- /dev/null +++ b/outputs/code-connect/iso.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1106:3211", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`iso`, +}); diff --git a/outputs/code-connect/issue_audit.figma.ts b/outputs/code-connect/issue_audit.figma.ts new file mode 100644 index 00000000..8b2fd985 --- /dev/null +++ b/outputs/code-connect/issue_audit.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2058", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`issue-audit`, +}); diff --git a/outputs/code-connect/italic.figma.ts b/outputs/code-connect/italic.figma.ts new file mode 100644 index 00000000..424917b7 --- /dev/null +++ b/outputs/code-connect/italic.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1351", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`italic`, +}); diff --git a/outputs/code-connect/jpg_attach.figma.ts b/outputs/code-connect/jpg_attach.figma.ts new file mode 100644 index 00000000..48a48bc2 --- /dev/null +++ b/outputs/code-connect/jpg_attach.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1360", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`jpg-attach`, +}); diff --git a/outputs/code-connect/justify.figma.ts b/outputs/code-connect/justify.figma.ts new file mode 100644 index 00000000..56b323e2 --- /dev/null +++ b/outputs/code-connect/justify.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1151", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`justify`, +}); diff --git a/outputs/code-connect/keyboard.figma.ts b/outputs/code-connect/keyboard.figma.ts new file mode 100644 index 00000000..703f8975 --- /dev/null +++ b/outputs/code-connect/keyboard.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1499", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`keyboard`, +}); diff --git a/outputs/code-connect/label.figma.ts b/outputs/code-connect/label.figma.ts new file mode 100644 index 00000000..84bfe92a --- /dev/null +++ b/outputs/code-connect/label.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4171", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`label`, +}); diff --git a/outputs/code-connect/laptop.figma.ts b/outputs/code-connect/laptop.figma.ts new file mode 100644 index 00000000..4e63252d --- /dev/null +++ b/outputs/code-connect/laptop.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1500", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`laptop`, +}); diff --git a/outputs/code-connect/last_page.figma.ts b/outputs/code-connect/last_page.figma.ts new file mode 100644 index 00000000..4f5c82e3 --- /dev/null +++ b/outputs/code-connect/last_page.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=550:1637", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`last-page`, +}); diff --git a/outputs/code-connect/layers.figma.ts b/outputs/code-connect/layers.figma.ts new file mode 100644 index 00000000..8797dbc5 --- /dev/null +++ b/outputs/code-connect/layers.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1625", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`layers`, +}); diff --git a/outputs/code-connect/light_mode.figma.ts b/outputs/code-connect/light_mode.figma.ts new file mode 100644 index 00000000..0ca30d5e --- /dev/null +++ b/outputs/code-connect/light_mode.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:768", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`light-mode`, +}); diff --git a/outputs/code-connect/light_rail_train.figma.ts b/outputs/code-connect/light_rail_train.figma.ts new file mode 100644 index 00000000..93fc7513 --- /dev/null +++ b/outputs/code-connect/light_rail_train.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1635", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`light-rail train`, +}); diff --git a/outputs/code-connect/lightbulb.figma.ts b/outputs/code-connect/lightbulb.figma.ts new file mode 100644 index 00000000..0fbfd320 --- /dev/null +++ b/outputs/code-connect/lightbulb.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3405", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`lightbulb`, +}); diff --git a/outputs/code-connect/like.figma.ts b/outputs/code-connect/like.figma.ts new file mode 100644 index 00000000..9dc185d5 --- /dev/null +++ b/outputs/code-connect/like.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3860", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`like`, +}); diff --git a/outputs/code-connect/line_spacing.figma.ts b/outputs/code-connect/line_spacing.figma.ts new file mode 100644 index 00000000..97e2f368 --- /dev/null +++ b/outputs/code-connect/line_spacing.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1121", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`line-spacing`, +}); diff --git a/outputs/code-connect/link.figma.ts b/outputs/code-connect/link.figma.ts new file mode 100644 index 00000000..976bf70b --- /dev/null +++ b/outputs/code-connect/link.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1174", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`link`, +}); diff --git a/outputs/code-connect/link_add.figma.ts b/outputs/code-connect/link_add.figma.ts new file mode 100644 index 00000000..e83f301e --- /dev/null +++ b/outputs/code-connect/link_add.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:510", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`link-add`, +}); diff --git a/outputs/code-connect/linkedin.figma.ts b/outputs/code-connect/linkedin.figma.ts new file mode 100644 index 00000000..1cb92be1 --- /dev/null +++ b/outputs/code-connect/linkedin.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:2030", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`linkedin`, +}); diff --git a/outputs/code-connect/list.figma.ts b/outputs/code-connect/list.figma.ts new file mode 100644 index 00000000..014ce9de --- /dev/null +++ b/outputs/code-connect/list.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4163", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`list`, +}); diff --git a/outputs/code-connect/list_alt.figma.ts b/outputs/code-connect/list_alt.figma.ts new file mode 100644 index 00000000..b473ebdb --- /dev/null +++ b/outputs/code-connect/list_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3859", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`list-alt`, +}); diff --git a/outputs/code-connect/list_bullet_contained.figma.ts b/outputs/code-connect/list_bullet_contained.figma.ts new file mode 100644 index 00000000..e4b08d38 --- /dev/null +++ b/outputs/code-connect/list_bullet_contained.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:43", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`list-bullet contained`, +}); diff --git a/outputs/code-connect/list_feedback.figma.ts b/outputs/code-connect/list_feedback.figma.ts new file mode 100644 index 00000000..0af26c87 --- /dev/null +++ b/outputs/code-connect/list_feedback.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:40", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`list-feedback`, +}); diff --git a/outputs/code-connect/list_form.figma.ts b/outputs/code-connect/list_form.figma.ts new file mode 100644 index 00000000..2c68f1a5 --- /dev/null +++ b/outputs/code-connect/list_form.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:46", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`list-form`, +}); diff --git a/outputs/code-connect/local_shipping.figma.ts b/outputs/code-connect/local_shipping.figma.ts new file mode 100644 index 00000000..38a1c99a --- /dev/null +++ b/outputs/code-connect/local_shipping.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1648", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`local-shipping`, +}); diff --git a/outputs/code-connect/location.figma.ts b/outputs/code-connect/location.figma.ts new file mode 100644 index 00000000..ccf5b2b7 --- /dev/null +++ b/outputs/code-connect/location.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:766", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`location`, +}); diff --git a/outputs/code-connect/location_off.figma.ts b/outputs/code-connect/location_off.figma.ts new file mode 100644 index 00000000..dae5e9d5 --- /dev/null +++ b/outputs/code-connect/location_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3411", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`location-off`, +}); diff --git a/outputs/code-connect/location_point.figma.ts b/outputs/code-connect/location_point.figma.ts new file mode 100644 index 00000000..65a80fb3 --- /dev/null +++ b/outputs/code-connect/location_point.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:767", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`location-point`, +}); diff --git a/outputs/code-connect/lock.figma.ts b/outputs/code-connect/lock.figma.ts new file mode 100644 index 00000000..2429a5e6 --- /dev/null +++ b/outputs/code-connect/lock.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1941", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`lock`, +}); diff --git a/outputs/code-connect/lock_alt.figma.ts b/outputs/code-connect/lock_alt.figma.ts new file mode 100644 index 00000000..d8eba5bd --- /dev/null +++ b/outputs/code-connect/lock_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3851", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`lock-alt`, +}); diff --git a/outputs/code-connect/lock_undo.figma.ts b/outputs/code-connect/lock_undo.figma.ts new file mode 100644 index 00000000..f90795bb --- /dev/null +++ b/outputs/code-connect/lock_undo.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:504", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`lock-undo`, +}); diff --git a/outputs/code-connect/log_in.figma.ts b/outputs/code-connect/log_in.figma.ts new file mode 100644 index 00000000..0124e542 --- /dev/null +++ b/outputs/code-connect/log_in.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4162", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`log-in`, +}); diff --git a/outputs/code-connect/log_out.figma.ts b/outputs/code-connect/log_out.figma.ts new file mode 100644 index 00000000..baee7f82 --- /dev/null +++ b/outputs/code-connect/log_out.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4161", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`log-out`, +}); diff --git a/outputs/code-connect/love.figma.ts b/outputs/code-connect/love.figma.ts new file mode 100644 index 00000000..79d61da1 --- /dev/null +++ b/outputs/code-connect/love.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3849", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`love`, +}); diff --git a/outputs/code-connect/love_outline.figma.ts b/outputs/code-connect/love_outline.figma.ts new file mode 100644 index 00000000..e66fa991 --- /dev/null +++ b/outputs/code-connect/love_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3850", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`love-outline`, +}); diff --git a/outputs/code-connect/maintenance.figma.ts b/outputs/code-connect/maintenance.figma.ts new file mode 100644 index 00000000..2aaa199a --- /dev/null +++ b/outputs/code-connect/maintenance.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3364", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`maintenance`, +}); diff --git a/outputs/code-connect/map.figma.ts b/outputs/code-connect/map.figma.ts new file mode 100644 index 00000000..8c6a4414 --- /dev/null +++ b/outputs/code-connect/map.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1629", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`map`, +}); diff --git a/outputs/code-connect/meal.figma.ts b/outputs/code-connect/meal.figma.ts new file mode 100644 index 00000000..6079699c --- /dev/null +++ b/outputs/code-connect/meal.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3743", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`meal`, +}); diff --git a/outputs/code-connect/medium.figma.ts b/outputs/code-connect/medium.figma.ts new file mode 100644 index 00000000..52837892 --- /dev/null +++ b/outputs/code-connect/medium.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:1946", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`medium`, +}); diff --git a/outputs/code-connect/memory.figma.ts b/outputs/code-connect/memory.figma.ts new file mode 100644 index 00000000..7c21f1b3 --- /dev/null +++ b/outputs/code-connect/memory.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1501", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`memory`, +}); diff --git a/outputs/code-connect/message.figma.ts b/outputs/code-connect/message.figma.ts new file mode 100644 index 00000000..4e494b3a --- /dev/null +++ b/outputs/code-connect/message.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4523", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`message`, +}); diff --git a/outputs/code-connect/microphone.figma.ts b/outputs/code-connect/microphone.figma.ts new file mode 100644 index 00000000..7ce248f8 --- /dev/null +++ b/outputs/code-connect/microphone.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:960", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`microphone`, +}); diff --git a/outputs/code-connect/microphone_off.figma.ts b/outputs/code-connect/microphone_off.figma.ts new file mode 100644 index 00000000..c40a2c42 --- /dev/null +++ b/outputs/code-connect/microphone_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:962", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`microphone-off`, +}); diff --git a/outputs/code-connect/microphone_outline.figma.ts b/outputs/code-connect/microphone_outline.figma.ts new file mode 100644 index 00000000..9c217256 --- /dev/null +++ b/outputs/code-connect/microphone_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:961", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`microphone-outline`, +}); diff --git a/outputs/code-connect/mobile_friendly.figma.ts b/outputs/code-connect/mobile_friendly.figma.ts new file mode 100644 index 00000000..fbed95c7 --- /dev/null +++ b/outputs/code-connect/mobile_friendly.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:792", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`mobile-friendly`, +}); diff --git a/outputs/code-connect/money_euro.figma.ts b/outputs/code-connect/money_euro.figma.ts new file mode 100644 index 00000000..aa84a9d7 --- /dev/null +++ b/outputs/code-connect/money_euro.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:60", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`money-euro`, +}); diff --git a/outputs/code-connect/money_pound.figma.ts b/outputs/code-connect/money_pound.figma.ts new file mode 100644 index 00000000..aaa3f2e6 --- /dev/null +++ b/outputs/code-connect/money_pound.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:63", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`money-pound`, +}); diff --git a/outputs/code-connect/money_usd.figma.ts b/outputs/code-connect/money_usd.figma.ts new file mode 100644 index 00000000..79a1cbff --- /dev/null +++ b/outputs/code-connect/money_usd.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:57", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`money-usd`, +}); diff --git a/outputs/code-connect/monitor.figma.ts b/outputs/code-connect/monitor.figma.ts new file mode 100644 index 00000000..9285d25f --- /dev/null +++ b/outputs/code-connect/monitor.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1502", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`monitor`, +}); diff --git a/outputs/code-connect/more_horizontal.figma.ts b/outputs/code-connect/more_horizontal.figma.ts new file mode 100644 index 00000000..ab681679 --- /dev/null +++ b/outputs/code-connect/more_horizontal.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4818", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`more-horizontal`, +}); diff --git a/outputs/code-connect/more_vertical.figma.ts b/outputs/code-connect/more_vertical.figma.ts new file mode 100644 index 00000000..75ca6251 --- /dev/null +++ b/outputs/code-connect/more_vertical.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4817", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`more-vertical`, +}); diff --git a/outputs/code-connect/my_location.figma.ts b/outputs/code-connect/my_location.figma.ts new file mode 100644 index 00000000..9ff28729 --- /dev/null +++ b/outputs/code-connect/my_location.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1630", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`my-location`, +}); diff --git a/outputs/code-connect/navigate.figma.ts b/outputs/code-connect/navigate.figma.ts new file mode 100644 index 00000000..e2c6bf92 --- /dev/null +++ b/outputs/code-connect/navigate.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3393", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`navigate`, +}); diff --git a/outputs/code-connect/navigation.figma.ts b/outputs/code-connect/navigation.figma.ts new file mode 100644 index 00000000..ffb9d546 --- /dev/null +++ b/outputs/code-connect/navigation.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1631", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`navigation`, +}); diff --git a/outputs/code-connect/near_me.figma.ts b/outputs/code-connect/near_me.figma.ts new file mode 100644 index 00000000..20ace577 --- /dev/null +++ b/outputs/code-connect/near_me.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1627", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`near-me`, +}); diff --git a/outputs/code-connect/network_signal.figma.ts b/outputs/code-connect/network_signal.figma.ts new file mode 100644 index 00000000..2b294996 --- /dev/null +++ b/outputs/code-connect/network_signal.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:1866", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`network-signal`, +}); diff --git a/outputs/code-connect/new_chat.figma.ts b/outputs/code-connect/new_chat.figma.ts new file mode 100644 index 00000000..57656214 --- /dev/null +++ b/outputs/code-connect/new_chat.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3323", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`new-chat`, +}); diff --git a/outputs/code-connect/nfc.figma.ts b/outputs/code-connect/nfc.figma.ts new file mode 100644 index 00000000..ddc4b882 --- /dev/null +++ b/outputs/code-connect/nfc.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2315", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`nfc`, +}); diff --git a/outputs/code-connect/night.figma.ts b/outputs/code-connect/night.figma.ts new file mode 100644 index 00000000..9f2b1be3 --- /dev/null +++ b/outputs/code-connect/night.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:771", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`night`, +}); diff --git a/outputs/code-connect/no_color.figma.ts b/outputs/code-connect/no_color.figma.ts new file mode 100644 index 00000000..1a6ee839 --- /dev/null +++ b/outputs/code-connect/no_color.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1353", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`no-color`, +}); diff --git a/outputs/code-connect/note.figma.ts b/outputs/code-connect/note.figma.ts new file mode 100644 index 00000000..fbbc364b --- /dev/null +++ b/outputs/code-connect/note.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:31", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`note`, +}); diff --git a/outputs/code-connect/notifications_off.figma.ts b/outputs/code-connect/notifications_off.figma.ts new file mode 100644 index 00000000..9d8086ab --- /dev/null +++ b/outputs/code-connect/notifications_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3414", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`notifications-off`, +}); diff --git a/outputs/code-connect/numbered_list.figma.ts b/outputs/code-connect/numbered_list.figma.ts new file mode 100644 index 00000000..822874c9 --- /dev/null +++ b/outputs/code-connect/numbered_list.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1122", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`numbered-list`, +}); diff --git a/outputs/code-connect/open_in_full.figma.ts b/outputs/code-connect/open_in_full.figma.ts new file mode 100644 index 00000000..6b91897a --- /dev/null +++ b/outputs/code-connect/open_in_full.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4175", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`open-in full`, +}); diff --git a/outputs/code-connect/open_in_new_window.figma.ts b/outputs/code-connect/open_in_new_window.figma.ts new file mode 100644 index 00000000..d3286352 --- /dev/null +++ b/outputs/code-connect/open_in_new_window.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4174", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`open-in new window`, +}); diff --git a/outputs/code-connect/open_new_off.figma.ts b/outputs/code-connect/open_new_off.figma.ts new file mode 100644 index 00000000..eb4d641f --- /dev/null +++ b/outputs/code-connect/open_new_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3339", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`open-new off`, +}); diff --git a/outputs/code-connect/page_height.figma.ts b/outputs/code-connect/page_height.figma.ts new file mode 100644 index 00000000..c67b2622 --- /dev/null +++ b/outputs/code-connect/page_height.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3342", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`page-height`, +}); diff --git a/outputs/code-connect/page_rotate.figma.ts b/outputs/code-connect/page_rotate.figma.ts new file mode 100644 index 00000000..eb16023f --- /dev/null +++ b/outputs/code-connect/page_rotate.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3348", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`page-rotate`, +}); diff --git a/outputs/code-connect/page_width.figma.ts b/outputs/code-connect/page_width.figma.ts new file mode 100644 index 00000000..96276e8a --- /dev/null +++ b/outputs/code-connect/page_width.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3345", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`page-width`, +}); diff --git a/outputs/code-connect/palette.figma.ts b/outputs/code-connect/palette.figma.ts new file mode 100644 index 00000000..bcb7a6c5 --- /dev/null +++ b/outputs/code-connect/palette.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3396", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`palette`, +}); diff --git a/outputs/code-connect/partner.figma.ts b/outputs/code-connect/partner.figma.ts new file mode 100644 index 00000000..48a7c6c0 --- /dev/null +++ b/outputs/code-connect/partner.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:23", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`partner`, +}); diff --git a/outputs/code-connect/pause.figma.ts b/outputs/code-connect/pause.figma.ts new file mode 100644 index 00000000..f0ca494e --- /dev/null +++ b/outputs/code-connect/pause.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:950", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`pause`, +}); diff --git a/outputs/code-connect/pause_circle.figma.ts b/outputs/code-connect/pause_circle.figma.ts new file mode 100644 index 00000000..7c222f1d --- /dev/null +++ b/outputs/code-connect/pause_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:948", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`pause-circle`, +}); diff --git a/outputs/code-connect/pdf_attach.figma.ts b/outputs/code-connect/pdf_attach.figma.ts new file mode 100644 index 00000000..b1b060cc --- /dev/null +++ b/outputs/code-connect/pdf_attach.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1361", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`pdf-attach`, +}); diff --git a/outputs/code-connect/pending.figma.ts b/outputs/code-connect/pending.figma.ts new file mode 100644 index 00000000..3eab698e --- /dev/null +++ b/outputs/code-connect/pending.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4170", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`pending`, +}); diff --git a/outputs/code-connect/person.figma.ts b/outputs/code-connect/person.figma.ts new file mode 100644 index 00000000..92dc7c59 --- /dev/null +++ b/outputs/code-connect/person.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1117", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person`, +}); diff --git a/outputs/code-connect/person_admin.figma.ts b/outputs/code-connect/person_admin.figma.ts new file mode 100644 index 00000000..3485a01b --- /dev/null +++ b/outputs/code-connect/person_admin.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:103", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-admin`, +}); diff --git a/outputs/code-connect/person_assign.figma.ts b/outputs/code-connect/person_assign.figma.ts new file mode 100644 index 00000000..b0b03fea --- /dev/null +++ b/outputs/code-connect/person_assign.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:97", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-assign`, +}); diff --git a/outputs/code-connect/person_clock.figma.ts b/outputs/code-connect/person_clock.figma.ts new file mode 100644 index 00000000..7a9ba322 --- /dev/null +++ b/outputs/code-connect/person_clock.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:88", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-clock`, +}); diff --git a/outputs/code-connect/person_info.figma.ts b/outputs/code-connect/person_info.figma.ts new file mode 100644 index 00000000..dd66db93 --- /dev/null +++ b/outputs/code-connect/person_info.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:100", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-info`, +}); diff --git a/outputs/code-connect/person_manager.figma.ts b/outputs/code-connect/person_manager.figma.ts new file mode 100644 index 00000000..3d6e48fa --- /dev/null +++ b/outputs/code-connect/person_manager.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:94", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-manager`, +}); diff --git a/outputs/code-connect/person_move.figma.ts b/outputs/code-connect/person_move.figma.ts new file mode 100644 index 00000000..10cd3062 --- /dev/null +++ b/outputs/code-connect/person_move.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:91", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-move`, +}); diff --git a/outputs/code-connect/person_outline.figma.ts b/outputs/code-connect/person_outline.figma.ts new file mode 100644 index 00000000..57383af1 --- /dev/null +++ b/outputs/code-connect/person_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1120", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-outline`, +}); diff --git a/outputs/code-connect/person_search.figma.ts b/outputs/code-connect/person_search.figma.ts new file mode 100644 index 00000000..206baff7 --- /dev/null +++ b/outputs/code-connect/person_search.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4522", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-search`, +}); diff --git a/outputs/code-connect/person_swap.figma.ts b/outputs/code-connect/person_swap.figma.ts new file mode 100644 index 00000000..05f9daa7 --- /dev/null +++ b/outputs/code-connect/person_swap.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:82", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-swap`, +}); diff --git a/outputs/code-connect/person_walk.figma.ts b/outputs/code-connect/person_walk.figma.ts new file mode 100644 index 00000000..f80efeaf --- /dev/null +++ b/outputs/code-connect/person_walk.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:85", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`person-walk`, +}); diff --git a/outputs/code-connect/phone.figma.ts b/outputs/code-connect/phone.figma.ts new file mode 100644 index 00000000..77e8b6cb --- /dev/null +++ b/outputs/code-connect/phone.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4516", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`phone`, +}); diff --git a/outputs/code-connect/phone_android.figma.ts b/outputs/code-connect/phone_android.figma.ts new file mode 100644 index 00000000..d1e2b1a7 --- /dev/null +++ b/outputs/code-connect/phone_android.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1503", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`phone-android`, +}); diff --git a/outputs/code-connect/phone_bluetooth_speaker.figma.ts b/outputs/code-connect/phone_bluetooth_speaker.figma.ts new file mode 100644 index 00000000..e901140e --- /dev/null +++ b/outputs/code-connect/phone_bluetooth_speaker.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1496", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`phone-bluetooth speaker`, +}); diff --git a/outputs/code-connect/phone_in_talk.figma.ts b/outputs/code-connect/phone_in_talk.figma.ts new file mode 100644 index 00000000..12cfbe44 --- /dev/null +++ b/outputs/code-connect/phone_in_talk.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1497", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`phone-in talk`, +}); diff --git a/outputs/code-connect/phone_iphone.figma.ts b/outputs/code-connect/phone_iphone.figma.ts new file mode 100644 index 00000000..389f5c3d --- /dev/null +++ b/outputs/code-connect/phone_iphone.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1504", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`phone-iphone`, +}); diff --git a/outputs/code-connect/phonelink.figma.ts b/outputs/code-connect/phonelink.figma.ts new file mode 100644 index 00000000..81de097c --- /dev/null +++ b/outputs/code-connect/phonelink.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1505", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`phonelink`, +}); diff --git a/outputs/code-connect/phrase.figma.ts b/outputs/code-connect/phrase.figma.ts new file mode 100644 index 00000000..37823796 --- /dev/null +++ b/outputs/code-connect/phrase.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:38", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`phrase`, +}); diff --git a/outputs/code-connect/pin.figma.ts b/outputs/code-connect/pin.figma.ts new file mode 100644 index 00000000..b65c55d1 --- /dev/null +++ b/outputs/code-connect/pin.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4018", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`pin`, +}); diff --git a/outputs/code-connect/place.figma.ts b/outputs/code-connect/place.figma.ts new file mode 100644 index 00000000..ef1c04f2 --- /dev/null +++ b/outputs/code-connect/place.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1628", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`place`, +}); diff --git a/outputs/code-connect/planogram.figma.ts b/outputs/code-connect/planogram.figma.ts new file mode 100644 index 00000000..5bb8c70f --- /dev/null +++ b/outputs/code-connect/planogram.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=840:2045", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`planogram`, +}); diff --git a/outputs/code-connect/play.figma.ts b/outputs/code-connect/play.figma.ts new file mode 100644 index 00000000..e3c471a1 --- /dev/null +++ b/outputs/code-connect/play.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:944", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`play`, +}); diff --git a/outputs/code-connect/play_circle.figma.ts b/outputs/code-connect/play_circle.figma.ts new file mode 100644 index 00000000..7061d96f --- /dev/null +++ b/outputs/code-connect/play_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:945", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`play-circle`, +}); diff --git a/outputs/code-connect/play_outline.figma.ts b/outputs/code-connect/play_outline.figma.ts new file mode 100644 index 00000000..b4990737 --- /dev/null +++ b/outputs/code-connect/play_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:946", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`play-outline`, +}); diff --git a/outputs/code-connect/png_attach.figma.ts b/outputs/code-connect/png_attach.figma.ts new file mode 100644 index 00000000..40373247 --- /dev/null +++ b/outputs/code-connect/png_attach.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1362", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`png-attach`, +}); diff --git a/outputs/code-connect/point_gift.figma.ts b/outputs/code-connect/point_gift.figma.ts new file mode 100644 index 00000000..0152f1ac --- /dev/null +++ b/outputs/code-connect/point_gift.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:47", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`point-gift`, +}); diff --git a/outputs/code-connect/point_heart.figma.ts b/outputs/code-connect/point_heart.figma.ts new file mode 100644 index 00000000..e6bce5bd --- /dev/null +++ b/outputs/code-connect/point_heart.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:27", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`point-heart`, +}); diff --git a/outputs/code-connect/point_money.figma.ts b/outputs/code-connect/point_money.figma.ts new file mode 100644 index 00000000..660e9b11 --- /dev/null +++ b/outputs/code-connect/point_money.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:42", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`point-money`, +}); diff --git a/outputs/code-connect/point_star.figma.ts b/outputs/code-connect/point_star.figma.ts new file mode 100644 index 00000000..eed74c10 --- /dev/null +++ b/outputs/code-connect/point_star.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:32", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`point-star`, +}); diff --git a/outputs/code-connect/point_token.figma.ts b/outputs/code-connect/point_token.figma.ts new file mode 100644 index 00000000..cfecb5a9 --- /dev/null +++ b/outputs/code-connect/point_token.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:86", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`point-token`, +}); diff --git a/outputs/code-connect/portrait.figma.ts b/outputs/code-connect/portrait.figma.ts new file mode 100644 index 00000000..82c4d01e --- /dev/null +++ b/outputs/code-connect/portrait.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1749", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`portrait`, +}); diff --git a/outputs/code-connect/ppt_attach.figma.ts b/outputs/code-connect/ppt_attach.figma.ts new file mode 100644 index 00000000..be1fc458 --- /dev/null +++ b/outputs/code-connect/ppt_attach.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1364", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`ppt-attach`, +}); diff --git a/outputs/code-connect/price.figma.ts b/outputs/code-connect/price.figma.ts new file mode 100644 index 00000000..0da9f5cb --- /dev/null +++ b/outputs/code-connect/price.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4169", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`price`, +}); diff --git a/outputs/code-connect/printer.figma.ts b/outputs/code-connect/printer.figma.ts new file mode 100644 index 00000000..39f62345 --- /dev/null +++ b/outputs/code-connect/printer.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=750:1654", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`printer`, +}); diff --git a/outputs/code-connect/priority.figma.ts b/outputs/code-connect/priority.figma.ts new file mode 100644 index 00000000..fb0b54e0 --- /dev/null +++ b/outputs/code-connect/priority.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1500", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`priority`, +}); diff --git a/outputs/code-connect/pro.figma.ts b/outputs/code-connect/pro.figma.ts new file mode 100644 index 00000000..d346425d --- /dev/null +++ b/outputs/code-connect/pro.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1104:2992", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`pro`, +}); diff --git a/outputs/code-connect/productivity_apps.figma.ts b/outputs/code-connect/productivity_apps.figma.ts new file mode 100644 index 00000000..9c599dc9 --- /dev/null +++ b/outputs/code-connect/productivity_apps.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=844:2278", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`productivity-apps`, +}); diff --git a/outputs/code-connect/ptt.figma.ts b/outputs/code-connect/ptt.figma.ts new file mode 100644 index 00000000..b23e846f --- /dev/null +++ b/outputs/code-connect/ptt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:344", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`ptt`, +}); diff --git a/outputs/code-connect/publish.figma.ts b/outputs/code-connect/publish.figma.ts new file mode 100644 index 00000000..c600cfd4 --- /dev/null +++ b/outputs/code-connect/publish.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3355", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`publish`, +}); diff --git a/outputs/code-connect/push_pin.figma.ts b/outputs/code-connect/push_pin.figma.ts new file mode 100644 index 00000000..ba628cf5 --- /dev/null +++ b/outputs/code-connect/push_pin.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:726", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`push-pin`, +}); diff --git a/outputs/code-connect/qr_code.figma.ts b/outputs/code-connect/qr_code.figma.ts new file mode 100644 index 00000000..31192896 --- /dev/null +++ b/outputs/code-connect/qr_code.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4537", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`qr-code`, +}); diff --git a/outputs/code-connect/queue.figma.ts b/outputs/code-connect/queue.figma.ts new file mode 100644 index 00000000..b3ee3dcc --- /dev/null +++ b/outputs/code-connect/queue.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:57", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`queue`, +}); diff --git a/outputs/code-connect/radio_button_checked.figma.ts b/outputs/code-connect/radio_button_checked.figma.ts new file mode 100644 index 00000000..a520fcc5 --- /dev/null +++ b/outputs/code-connect/radio_button_checked.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1593", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`radio-button checked`, +}); diff --git a/outputs/code-connect/radio_button_unchecked.figma.ts b/outputs/code-connect/radio_button_unchecked.figma.ts new file mode 100644 index 00000000..ae9aa0ac --- /dev/null +++ b/outputs/code-connect/radio_button_unchecked.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1594", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`radio-button unchecked`, +}); diff --git a/outputs/code-connect/react_add.figma.ts b/outputs/code-connect/react_add.figma.ts new file mode 100644 index 00000000..7a5b30de --- /dev/null +++ b/outputs/code-connect/react_add.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:77", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`react-add`, +}); diff --git a/outputs/code-connect/react_thumbsup.figma.ts b/outputs/code-connect/react_thumbsup.figma.ts new file mode 100644 index 00000000..00ba2ff3 --- /dev/null +++ b/outputs/code-connect/react_thumbsup.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:83", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`react-thumbsup`, +}); diff --git a/outputs/code-connect/recall.figma.ts b/outputs/code-connect/recall.figma.ts new file mode 100644 index 00000000..1128479c --- /dev/null +++ b/outputs/code-connect/recall.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:528", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`recall`, +}); diff --git a/outputs/code-connect/receipt.figma.ts b/outputs/code-connect/receipt.figma.ts new file mode 100644 index 00000000..34cdf659 --- /dev/null +++ b/outputs/code-connect/receipt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2120", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`receipt`, +}); diff --git a/outputs/code-connect/recording.figma.ts b/outputs/code-connect/recording.figma.ts new file mode 100644 index 00000000..91ab14b5 --- /dev/null +++ b/outputs/code-connect/recording.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3399", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`recording`, +}); diff --git a/outputs/code-connect/redo.figma.ts b/outputs/code-connect/redo.figma.ts new file mode 100644 index 00000000..22344282 --- /dev/null +++ b/outputs/code-connect/redo.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:719", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`redo`, +}); diff --git a/outputs/code-connect/refresh.figma.ts b/outputs/code-connect/refresh.figma.ts new file mode 100644 index 00000000..06c8aaf0 --- /dev/null +++ b/outputs/code-connect/refresh.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4831", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`refresh`, +}); diff --git a/outputs/code-connect/remove.figma.ts b/outputs/code-connect/remove.figma.ts new file mode 100644 index 00000000..89c5ebd7 --- /dev/null +++ b/outputs/code-connect/remove.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:704", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`remove`, +}); diff --git a/outputs/code-connect/remove_box.figma.ts b/outputs/code-connect/remove_box.figma.ts new file mode 100644 index 00000000..3a8b128a --- /dev/null +++ b/outputs/code-connect/remove_box.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=649:1700", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`remove-box`, +}); diff --git a/outputs/code-connect/remove_circle.figma.ts b/outputs/code-connect/remove_circle.figma.ts new file mode 100644 index 00000000..bd4f209c --- /dev/null +++ b/outputs/code-connect/remove_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:705", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`remove-circle`, +}); diff --git a/outputs/code-connect/remove_circle_outline.figma.ts b/outputs/code-connect/remove_circle_outline.figma.ts new file mode 100644 index 00000000..6267411e --- /dev/null +++ b/outputs/code-connect/remove_circle_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:706", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`remove-circle outline`, +}); diff --git a/outputs/code-connect/remove_group.figma.ts b/outputs/code-connect/remove_group.figma.ts new file mode 100644 index 00000000..92c8a5ab --- /dev/null +++ b/outputs/code-connect/remove_group.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1123", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`remove-group`, +}); diff --git a/outputs/code-connect/remove_person.figma.ts b/outputs/code-connect/remove_person.figma.ts new file mode 100644 index 00000000..dcb70f40 --- /dev/null +++ b/outputs/code-connect/remove_person.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1118", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`remove-person`, +}); diff --git a/outputs/code-connect/renew.figma.ts b/outputs/code-connect/renew.figma.ts new file mode 100644 index 00000000..b3939eff --- /dev/null +++ b/outputs/code-connect/renew.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4019", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`renew`, +}); diff --git a/outputs/code-connect/reorder.figma.ts b/outputs/code-connect/reorder.figma.ts new file mode 100644 index 00000000..97808f18 --- /dev/null +++ b/outputs/code-connect/reorder.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:498", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`reorder`, +}); diff --git a/outputs/code-connect/repeat.figma.ts b/outputs/code-connect/repeat.figma.ts new file mode 100644 index 00000000..ea8ba6a6 --- /dev/null +++ b/outputs/code-connect/repeat.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:534", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`repeat`, +}); diff --git a/outputs/code-connect/replay.figma.ts b/outputs/code-connect/replay.figma.ts new file mode 100644 index 00000000..236e8956 --- /dev/null +++ b/outputs/code-connect/replay.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:964", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`replay`, +}); diff --git a/outputs/code-connect/reply.figma.ts b/outputs/code-connect/reply.figma.ts new file mode 100644 index 00000000..113ea38d --- /dev/null +++ b/outputs/code-connect/reply.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:720", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`reply`, +}); diff --git a/outputs/code-connect/report.figma.ts b/outputs/code-connect/report.figma.ts new file mode 100644 index 00000000..13a79775 --- /dev/null +++ b/outputs/code-connect/report.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3552", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`report`, +}); diff --git a/outputs/code-connect/restart_alt.figma.ts b/outputs/code-connect/restart_alt.figma.ts new file mode 100644 index 00000000..b509b883 --- /dev/null +++ b/outputs/code-connect/restart_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:776", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`restart-alt`, +}); diff --git a/outputs/code-connect/review.figma.ts b/outputs/code-connect/review.figma.ts new file mode 100644 index 00000000..c5b1c802 --- /dev/null +++ b/outputs/code-connect/review.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:486", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`review`, +}); diff --git a/outputs/code-connect/road_map.figma.ts b/outputs/code-connect/road_map.figma.ts new file mode 100644 index 00000000..c97c6fa2 --- /dev/null +++ b/outputs/code-connect/road_map.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2206", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`road-map`, +}); diff --git a/outputs/code-connect/rotate_left.figma.ts b/outputs/code-connect/rotate_left.figma.ts new file mode 100644 index 00000000..a477a33d --- /dev/null +++ b/outputs/code-connect/rotate_left.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1750", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`rotate-left`, +}); diff --git a/outputs/code-connect/rotate_right.figma.ts b/outputs/code-connect/rotate_right.figma.ts new file mode 100644 index 00000000..4bbd2665 --- /dev/null +++ b/outputs/code-connect/rotate_right.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1643", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`rotate-right`, +}); diff --git a/outputs/code-connect/rss_feed.figma.ts b/outputs/code-connect/rss_feed.figma.ts new file mode 100644 index 00000000..d7656ca8 --- /dev/null +++ b/outputs/code-connect/rss_feed.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4538", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`rss-feed`, +}); diff --git a/outputs/code-connect/rules.figma.ts b/outputs/code-connect/rules.figma.ts new file mode 100644 index 00000000..954e01d7 --- /dev/null +++ b/outputs/code-connect/rules.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2218", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`rules`, +}); diff --git a/outputs/code-connect/sad.figma.ts b/outputs/code-connect/sad.figma.ts new file mode 100644 index 00000000..4580ace3 --- /dev/null +++ b/outputs/code-connect/sad.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1134", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sad`, +}); diff --git a/outputs/code-connect/satisfied.figma.ts b/outputs/code-connect/satisfied.figma.ts new file mode 100644 index 00000000..d1370af2 --- /dev/null +++ b/outputs/code-connect/satisfied.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1135", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`satisfied`, +}); diff --git a/outputs/code-connect/save.figma.ts b/outputs/code-connect/save.figma.ts new file mode 100644 index 00000000..6f88abd2 --- /dev/null +++ b/outputs/code-connect/save.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3352", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`save`, +}); diff --git a/outputs/code-connect/save_alt.figma.ts b/outputs/code-connect/save_alt.figma.ts new file mode 100644 index 00000000..2a1eb705 --- /dev/null +++ b/outputs/code-connect/save_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:721", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`save-alt`, +}); diff --git a/outputs/code-connect/save_content.figma.ts b/outputs/code-connect/save_content.figma.ts new file mode 100644 index 00000000..bb9eccfd --- /dev/null +++ b/outputs/code-connect/save_content.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:722", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`save-content`, +}); diff --git a/outputs/code-connect/scan_rate.figma.ts b/outputs/code-connect/scan_rate.figma.ts new file mode 100644 index 00000000..a41ecea2 --- /dev/null +++ b/outputs/code-connect/scan_rate.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=841:2137", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`scan-rate`, +}); diff --git a/outputs/code-connect/scanner.figma.ts b/outputs/code-connect/scanner.figma.ts new file mode 100644 index 00000000..e927a928 --- /dev/null +++ b/outputs/code-connect/scanner.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1493", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`scanner`, +}); diff --git a/outputs/code-connect/schedule.figma.ts b/outputs/code-connect/schedule.figma.ts new file mode 100644 index 00000000..34b31be2 --- /dev/null +++ b/outputs/code-connect/schedule.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3680", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`schedule`, +}); diff --git a/outputs/code-connect/school.figma.ts b/outputs/code-connect/school.figma.ts new file mode 100644 index 00000000..8ec6576a --- /dev/null +++ b/outputs/code-connect/school.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:489", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`school`, +}); diff --git a/outputs/code-connect/screen_rotation.figma.ts b/outputs/code-connect/screen_rotation.figma.ts new file mode 100644 index 00000000..7b927017 --- /dev/null +++ b/outputs/code-connect/screen_rotation.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:779", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`screen-rotation`, +}); diff --git a/outputs/code-connect/sd_card.figma.ts b/outputs/code-connect/sd_card.figma.ts new file mode 100644 index 00000000..148b2b74 --- /dev/null +++ b/outputs/code-connect/sd_card.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1502", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sd-card`, +}); diff --git a/outputs/code-connect/search.figma.ts b/outputs/code-connect/search.figma.ts new file mode 100644 index 00000000..08e58ffa --- /dev/null +++ b/outputs/code-connect/search.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=238:3298", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`search`, +}); diff --git a/outputs/code-connect/security.figma.ts b/outputs/code-connect/security.figma.ts new file mode 100644 index 00000000..bdab7f5a --- /dev/null +++ b/outputs/code-connect/security.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1506", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`security`, +}); diff --git a/outputs/code-connect/security_check.figma.ts b/outputs/code-connect/security_check.figma.ts new file mode 100644 index 00000000..b3e2dd41 --- /dev/null +++ b/outputs/code-connect/security_check.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4164", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`security-check`, +}); diff --git a/outputs/code-connect/send.figma.ts b/outputs/code-connect/send.figma.ts new file mode 100644 index 00000000..4241e6af --- /dev/null +++ b/outputs/code-connect/send.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:725", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`send`, +}); diff --git a/outputs/code-connect/settings.figma.ts b/outputs/code-connect/settings.figma.ts new file mode 100644 index 00000000..2833ab7e --- /dev/null +++ b/outputs/code-connect/settings.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3763", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`settings`, +}); diff --git a/outputs/code-connect/shape_recognition.figma.ts b/outputs/code-connect/shape_recognition.figma.ts new file mode 100644 index 00000000..0599744c --- /dev/null +++ b/outputs/code-connect/shape_recognition.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2254", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`shape-recognition`, +}); diff --git a/outputs/code-connect/share.figma.ts b/outputs/code-connect/share.figma.ts new file mode 100644 index 00000000..bd2de295 --- /dev/null +++ b/outputs/code-connect/share.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1130", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`share`, +}); diff --git a/outputs/code-connect/shared_folder.figma.ts b/outputs/code-connect/shared_folder.figma.ts new file mode 100644 index 00000000..665daaf5 --- /dev/null +++ b/outputs/code-connect/shared_folder.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1356", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`shared-folder`, +}); diff --git a/outputs/code-connect/ship.figma.ts b/outputs/code-connect/ship.figma.ts new file mode 100644 index 00000000..2cda20ba --- /dev/null +++ b/outputs/code-connect/ship.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:1760", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`ship`, +}); diff --git a/outputs/code-connect/sim_card.figma.ts b/outputs/code-connect/sim_card.figma.ts new file mode 100644 index 00000000..c157b76d --- /dev/null +++ b/outputs/code-connect/sim_card.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=857:1922", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sim-card`, +}); diff --git a/outputs/code-connect/skip_next.figma.ts b/outputs/code-connect/skip_next.figma.ts new file mode 100644 index 00000000..28ba67e2 --- /dev/null +++ b/outputs/code-connect/skip_next.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:953", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`skip-next`, +}); diff --git a/outputs/code-connect/skip_previous.figma.ts b/outputs/code-connect/skip_previous.figma.ts new file mode 100644 index 00000000..70861139 --- /dev/null +++ b/outputs/code-connect/skip_previous.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:954", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`skip-previous`, +}); diff --git a/outputs/code-connect/slide_show.figma.ts b/outputs/code-connect/slide_show.figma.ts new file mode 100644 index 00000000..4c0c83a4 --- /dev/null +++ b/outputs/code-connect/slide_show.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1751", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`slide-show`, +}); diff --git a/outputs/code-connect/smart_phone.figma.ts b/outputs/code-connect/smart_phone.figma.ts new file mode 100644 index 00000000..bfeb5530 --- /dev/null +++ b/outputs/code-connect/smart_phone.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1508", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`smart-phone`, +}); diff --git a/outputs/code-connect/sms.figma.ts b/outputs/code-connect/sms.figma.ts new file mode 100644 index 00000000..266d4895 --- /dev/null +++ b/outputs/code-connect/sms.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4524", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sms`, +}); diff --git a/outputs/code-connect/snooze.figma.ts b/outputs/code-connect/snooze.figma.ts new file mode 100644 index 00000000..a7b760e5 --- /dev/null +++ b/outputs/code-connect/snooze.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:95", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`snooze`, +}); diff --git a/outputs/code-connect/solutions.figma.ts b/outputs/code-connect/solutions.figma.ts new file mode 100644 index 00000000..6ebfdb6b --- /dev/null +++ b/outputs/code-connect/solutions.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=844:2264", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`solutions`, +}); diff --git a/outputs/code-connect/sort.figma.ts b/outputs/code-connect/sort.figma.ts new file mode 100644 index 00000000..a0b97e66 --- /dev/null +++ b/outputs/code-connect/sort.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:495", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sort`, +}); diff --git a/outputs/code-connect/sort_content.figma.ts b/outputs/code-connect/sort_content.figma.ts new file mode 100644 index 00000000..34d60ef7 --- /dev/null +++ b/outputs/code-connect/sort_content.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:714", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sort-content`, +}); diff --git a/outputs/code-connect/speaker.figma.ts b/outputs/code-connect/speaker.figma.ts new file mode 100644 index 00000000..ff46b016 --- /dev/null +++ b/outputs/code-connect/speaker.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1509", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`speaker`, +}); diff --git a/outputs/code-connect/star.figma.ts b/outputs/code-connect/star.figma.ts new file mode 100644 index 00000000..21413eed --- /dev/null +++ b/outputs/code-connect/star.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1601", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`star`, +}); diff --git a/outputs/code-connect/star_half.figma.ts b/outputs/code-connect/star_half.figma.ts new file mode 100644 index 00000000..1e19c8ee --- /dev/null +++ b/outputs/code-connect/star_half.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1603", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`star-half`, +}); diff --git a/outputs/code-connect/star_outline.figma.ts b/outputs/code-connect/star_outline.figma.ts new file mode 100644 index 00000000..51ceb6aa --- /dev/null +++ b/outputs/code-connect/star_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1602", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`star-outline`, +}); diff --git a/outputs/code-connect/steps.figma.ts b/outputs/code-connect/steps.figma.ts new file mode 100644 index 00000000..484e33b3 --- /dev/null +++ b/outputs/code-connect/steps.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=844:2310", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`steps`, +}); diff --git a/outputs/code-connect/sticker.figma.ts b/outputs/code-connect/sticker.figma.ts new file mode 100644 index 00000000..3e9a67bd --- /dev/null +++ b/outputs/code-connect/sticker.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:341", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sticker`, +}); diff --git a/outputs/code-connect/stop.figma.ts b/outputs/code-connect/stop.figma.ts new file mode 100644 index 00000000..e7b3e0f8 --- /dev/null +++ b/outputs/code-connect/stop.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:949", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`stop`, +}); diff --git a/outputs/code-connect/stop_circle.figma.ts b/outputs/code-connect/stop_circle.figma.ts new file mode 100644 index 00000000..144f990c --- /dev/null +++ b/outputs/code-connect/stop_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:947", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`stop-circle`, +}); diff --git a/outputs/code-connect/store.figma.ts b/outputs/code-connect/store.figma.ts new file mode 100644 index 00000000..dfca38f3 --- /dev/null +++ b/outputs/code-connect/store.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:492", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`store`, +}); diff --git a/outputs/code-connect/store_release.figma.ts b/outputs/code-connect/store_release.figma.ts new file mode 100644 index 00000000..85619167 --- /dev/null +++ b/outputs/code-connect/store_release.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=5517:3016", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`store-release`, +}); diff --git a/outputs/code-connect/store_swap.figma.ts b/outputs/code-connect/store_swap.figma.ts new file mode 100644 index 00000000..2b86ca60 --- /dev/null +++ b/outputs/code-connect/store_swap.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:522", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`store-swap`, +}); diff --git a/outputs/code-connect/store_transfer.figma.ts b/outputs/code-connect/store_transfer.figma.ts new file mode 100644 index 00000000..92a1eb69 --- /dev/null +++ b/outputs/code-connect/store_transfer.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=5512:2999", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`store-transfer`, +}); diff --git a/outputs/code-connect/straighten.figma.ts b/outputs/code-connect/straighten.figma.ts new file mode 100644 index 00000000..6a02a5b2 --- /dev/null +++ b/outputs/code-connect/straighten.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1752", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`straighten`, +}); diff --git a/outputs/code-connect/strategy.figma.ts b/outputs/code-connect/strategy.figma.ts new file mode 100644 index 00000000..4af059e0 --- /dev/null +++ b/outputs/code-connect/strategy.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2242", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`strategy`, +}); diff --git a/outputs/code-connect/strikethrough.figma.ts b/outputs/code-connect/strikethrough.figma.ts new file mode 100644 index 00000000..ea1a95ce --- /dev/null +++ b/outputs/code-connect/strikethrough.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1356", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`strikethrough`, +}); diff --git a/outputs/code-connect/subscribe.figma.ts b/outputs/code-connect/subscribe.figma.ts new file mode 100644 index 00000000..8c4e6840 --- /dev/null +++ b/outputs/code-connect/subscribe.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:347", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`subscribe`, +}); diff --git a/outputs/code-connect/swap.figma.ts b/outputs/code-connect/swap.figma.ts new file mode 100644 index 00000000..2edb8287 --- /dev/null +++ b/outputs/code-connect/swap.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=5121:226", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`swap`, +}); diff --git a/outputs/code-connect/switch_user.figma.ts b/outputs/code-connect/switch_user.figma.ts new file mode 100644 index 00000000..791b43c9 --- /dev/null +++ b/outputs/code-connect/switch_user.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:2119", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`switch-user`, +}); diff --git a/outputs/code-connect/sync.figma.ts b/outputs/code-connect/sync.figma.ts new file mode 100644 index 00000000..12efd4a0 --- /dev/null +++ b/outputs/code-connect/sync.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1503", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sync`, +}); diff --git a/outputs/code-connect/sync_action.figma.ts b/outputs/code-connect/sync_action.figma.ts new file mode 100644 index 00000000..84667c65 --- /dev/null +++ b/outputs/code-connect/sync_action.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1965", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sync-action`, +}); diff --git a/outputs/code-connect/sync_disabled.figma.ts b/outputs/code-connect/sync_disabled.figma.ts new file mode 100644 index 00000000..c942189e --- /dev/null +++ b/outputs/code-connect/sync_disabled.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1504", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`sync-disabled`, +}); diff --git a/outputs/code-connect/table.figma.ts b/outputs/code-connect/table.figma.ts new file mode 100644 index 00000000..19ff1806 --- /dev/null +++ b/outputs/code-connect/table.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3555", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`table`, +}); diff --git a/outputs/code-connect/tablet.figma.ts b/outputs/code-connect/tablet.figma.ts new file mode 100644 index 00000000..78133b31 --- /dev/null +++ b/outputs/code-connect/tablet.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1510", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`tablet`, +}); diff --git a/outputs/code-connect/tablet_mac.figma.ts b/outputs/code-connect/tablet_mac.figma.ts new file mode 100644 index 00000000..19a21621 --- /dev/null +++ b/outputs/code-connect/tablet_mac.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1511", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`tablet-mac`, +}); diff --git a/outputs/code-connect/tag.figma.ts b/outputs/code-connect/tag.figma.ts new file mode 100644 index 00000000..9ef84206 --- /dev/null +++ b/outputs/code-connect/tag.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:507", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`tag`, +}); diff --git a/outputs/code-connect/tag_enterprise.figma.ts b/outputs/code-connect/tag_enterprise.figma.ts new file mode 100644 index 00000000..2b16392b --- /dev/null +++ b/outputs/code-connect/tag_enterprise.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1626", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`tag-enterprise`, +}); diff --git a/outputs/code-connect/tap_to_pay.figma.ts b/outputs/code-connect/tap_to_pay.figma.ts new file mode 100644 index 00000000..e8e7f15b --- /dev/null +++ b/outputs/code-connect/tap_to_pay.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=840:2038", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`tap-to pay`, +}); diff --git a/outputs/code-connect/taxi.figma.ts b/outputs/code-connect/taxi.figma.ts new file mode 100644 index 00000000..9387a8fd --- /dev/null +++ b/outputs/code-connect/taxi.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1647", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`taxi`, +}); diff --git a/outputs/code-connect/text_color.figma.ts b/outputs/code-connect/text_color.figma.ts new file mode 100644 index 00000000..4b0075e6 --- /dev/null +++ b/outputs/code-connect/text_color.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1175", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`text-color`, +}); diff --git a/outputs/code-connect/tiers.figma.ts b/outputs/code-connect/tiers.figma.ts new file mode 100644 index 00000000..8e05a956 --- /dev/null +++ b/outputs/code-connect/tiers.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:513", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`tiers`, +}); diff --git a/outputs/code-connect/timecard.figma.ts b/outputs/code-connect/timecard.figma.ts new file mode 100644 index 00000000..c521eac3 --- /dev/null +++ b/outputs/code-connect/timecard.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3734", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`timecard`, +}); diff --git a/outputs/code-connect/timecard_approve.figma.ts b/outputs/code-connect/timecard_approve.figma.ts new file mode 100644 index 00000000..446a727c --- /dev/null +++ b/outputs/code-connect/timecard_approve.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3740", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`timecard-approve`, +}); diff --git a/outputs/code-connect/timecard_warning.figma.ts b/outputs/code-connect/timecard_warning.figma.ts new file mode 100644 index 00000000..0b961aac --- /dev/null +++ b/outputs/code-connect/timecard_warning.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:3737", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`timecard-warning`, +}); diff --git a/outputs/code-connect/timer.figma.ts b/outputs/code-connect/timer.figma.ts new file mode 100644 index 00000000..7c0330b5 --- /dev/null +++ b/outputs/code-connect/timer.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1758", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`timer`, +}); diff --git a/outputs/code-connect/toggle_off.figma.ts b/outputs/code-connect/toggle_off.figma.ts new file mode 100644 index 00000000..23459a1f --- /dev/null +++ b/outputs/code-connect/toggle_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1595", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`toggle-off`, +}); diff --git a/outputs/code-connect/toggle_on.figma.ts b/outputs/code-connect/toggle_on.figma.ts new file mode 100644 index 00000000..47ea98ce --- /dev/null +++ b/outputs/code-connect/toggle_on.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=259:1596", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`toggle-on`, +}); diff --git a/outputs/code-connect/touch.figma.ts b/outputs/code-connect/touch.figma.ts new file mode 100644 index 00000000..765d98cc --- /dev/null +++ b/outputs/code-connect/touch.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4178", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`touch`, +}); diff --git a/outputs/code-connect/train.figma.ts b/outputs/code-connect/train.figma.ts new file mode 100644 index 00000000..a3336033 --- /dev/null +++ b/outputs/code-connect/train.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1645", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`train`, +}); diff --git a/outputs/code-connect/transfer.figma.ts b/outputs/code-connect/transfer.figma.ts new file mode 100644 index 00000000..c9ada4c9 --- /dev/null +++ b/outputs/code-connect/transfer.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:531", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`transfer`, +}); diff --git a/outputs/code-connect/trending_down.figma.ts b/outputs/code-connect/trending_down.figma.ts new file mode 100644 index 00000000..81bcfaaf --- /dev/null +++ b/outputs/code-connect/trending_down.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4007", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`trending-down`, +}); diff --git a/outputs/code-connect/trending_up.figma.ts b/outputs/code-connect/trending_up.figma.ts new file mode 100644 index 00000000..edba0145 --- /dev/null +++ b/outputs/code-connect/trending_up.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4006", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`trending-up`, +}); diff --git a/outputs/code-connect/tv.figma.ts b/outputs/code-connect/tv.figma.ts new file mode 100644 index 00000000..f3e67653 --- /dev/null +++ b/outputs/code-connect/tv.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1512", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`tv`, +}); diff --git a/outputs/code-connect/twitter.figma.ts b/outputs/code-connect/twitter.figma.ts new file mode 100644 index 00000000..44423763 --- /dev/null +++ b/outputs/code-connect/twitter.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:2006", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`twitter`, +}); diff --git a/outputs/code-connect/type.figma.ts b/outputs/code-connect/type.figma.ts new file mode 100644 index 00000000..2c5638dc --- /dev/null +++ b/outputs/code-connect/type.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1355", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`type`, +}); diff --git a/outputs/code-connect/uhf_rfid.figma.ts b/outputs/code-connect/uhf_rfid.figma.ts new file mode 100644 index 00000000..0555423e --- /dev/null +++ b/outputs/code-connect/uhf_rfid.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2089", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`uhf-rfid`, +}); diff --git a/outputs/code-connect/underline.figma.ts b/outputs/code-connect/underline.figma.ts new file mode 100644 index 00000000..fdd3acd2 --- /dev/null +++ b/outputs/code-connect/underline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1357", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`underline`, +}); diff --git a/outputs/code-connect/undo.figma.ts b/outputs/code-connect/undo.figma.ts new file mode 100644 index 00000000..d7a03a79 --- /dev/null +++ b/outputs/code-connect/undo.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=250:718", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`undo`, +}); diff --git a/outputs/code-connect/unfold_less.figma.ts b/outputs/code-connect/unfold_less.figma.ts new file mode 100644 index 00000000..6642029b --- /dev/null +++ b/outputs/code-connect/unfold_less.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=316:1650", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`unfold-less`, +}); diff --git a/outputs/code-connect/unfold_more.figma.ts b/outputs/code-connect/unfold_more.figma.ts new file mode 100644 index 00000000..3e94b502 --- /dev/null +++ b/outputs/code-connect/unfold_more.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=316:1649", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`unfold-more`, +}); diff --git a/outputs/code-connect/unlock.figma.ts b/outputs/code-connect/unlock.figma.ts new file mode 100644 index 00000000..f12df34b --- /dev/null +++ b/outputs/code-connect/unlock.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1950", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`unlock`, +}); diff --git a/outputs/code-connect/unlock_alt.figma.ts b/outputs/code-connect/unlock_alt.figma.ts new file mode 100644 index 00000000..4e4dfe5d --- /dev/null +++ b/outputs/code-connect/unlock_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1928", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`unlock-alt`, +}); diff --git a/outputs/code-connect/unsubscribe.figma.ts b/outputs/code-connect/unsubscribe.figma.ts new file mode 100644 index 00000000..333faed2 --- /dev/null +++ b/outputs/code-connect/unsubscribe.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:350", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`unsubscribe`, +}); diff --git a/outputs/code-connect/update.figma.ts b/outputs/code-connect/update.figma.ts new file mode 100644 index 00000000..2e350546 --- /dev/null +++ b/outputs/code-connect/update.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4010", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`update`, +}); diff --git a/outputs/code-connect/upload.figma.ts b/outputs/code-connect/upload.figma.ts new file mode 100644 index 00000000..34ce4a89 --- /dev/null +++ b/outputs/code-connect/upload.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=755:1821", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`upload`, +}); diff --git a/outputs/code-connect/upload_file.figma.ts b/outputs/code-connect/upload_file.figma.ts new file mode 100644 index 00000000..e5853317 --- /dev/null +++ b/outputs/code-connect/upload_file.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1358", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`upload-file`, +}); diff --git a/outputs/code-connect/usb.figma.ts b/outputs/code-connect/usb.figma.ts new file mode 100644 index 00000000..354cd30d --- /dev/null +++ b/outputs/code-connect/usb.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=256:783", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`usb`, +}); diff --git a/outputs/code-connect/usb_alt.figma.ts b/outputs/code-connect/usb_alt.figma.ts new file mode 100644 index 00000000..e41c3b4b --- /dev/null +++ b/outputs/code-connect/usb_alt.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=829:1804", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`usb-alt`, +}); diff --git a/outputs/code-connect/usb_alt_device.figma.ts b/outputs/code-connect/usb_alt_device.figma.ts new file mode 100644 index 00000000..a88eaa92 --- /dev/null +++ b/outputs/code-connect/usb_alt_device.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:2000", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`usb-alt device`, +}); diff --git a/outputs/code-connect/user.figma.ts b/outputs/code-connect/user.figma.ts new file mode 100644 index 00000000..78e7a6cb --- /dev/null +++ b/outputs/code-connect/user.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4008", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`user`, +}); diff --git a/outputs/code-connect/user_circle.figma.ts b/outputs/code-connect/user_circle.figma.ts new file mode 100644 index 00000000..5a0d7222 --- /dev/null +++ b/outputs/code-connect/user_circle.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=240:40", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`user-circle`, +}); diff --git a/outputs/code-connect/user_minor.figma.ts b/outputs/code-connect/user_minor.figma.ts new file mode 100644 index 00000000..0e33680e --- /dev/null +++ b/outputs/code-connect/user_minor.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4932:78", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`user-minor`, +}); diff --git a/outputs/code-connect/user_settings.figma.ts b/outputs/code-connect/user_settings.figma.ts new file mode 100644 index 00000000..b74a8672 --- /dev/null +++ b/outputs/code-connect/user_settings.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3857", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`user-settings`, +}); diff --git a/outputs/code-connect/vacation.figma.ts b/outputs/code-connect/vacation.figma.ts new file mode 100644 index 00000000..b4355b43 --- /dev/null +++ b/outputs/code-connect/vacation.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:544", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`vacation`, +}); diff --git a/outputs/code-connect/verified.figma.ts b/outputs/code-connect/verified.figma.ts new file mode 100644 index 00000000..4ca21f41 --- /dev/null +++ b/outputs/code-connect/verified.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4179", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`verified`, +}); diff --git a/outputs/code-connect/very_satisfied.figma.ts b/outputs/code-connect/very_satisfied.figma.ts new file mode 100644 index 00000000..35d960d5 --- /dev/null +++ b/outputs/code-connect/very_satisfied.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:1136", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`very-satisfied`, +}); diff --git a/outputs/code-connect/video.figma.ts b/outputs/code-connect/video.figma.ts new file mode 100644 index 00000000..7d305005 --- /dev/null +++ b/outputs/code-connect/video.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:477", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`video`, +}); diff --git a/outputs/code-connect/video_camera.figma.ts b/outputs/code-connect/video_camera.figma.ts new file mode 100644 index 00000000..249a510e --- /dev/null +++ b/outputs/code-connect/video_camera.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:968", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`video-camera`, +}); diff --git a/outputs/code-connect/video_off.figma.ts b/outputs/code-connect/video_off.figma.ts new file mode 100644 index 00000000..75b532e7 --- /dev/null +++ b/outputs/code-connect/video_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:474", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`video-off`, +}); diff --git a/outputs/code-connect/video_play.figma.ts b/outputs/code-connect/video_play.figma.ts new file mode 100644 index 00000000..3cc024ae --- /dev/null +++ b/outputs/code-connect/video_play.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1507", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`video-play`, +}); diff --git a/outputs/code-connect/visibility.figma.ts b/outputs/code-connect/visibility.figma.ts new file mode 100644 index 00000000..593a0b4f --- /dev/null +++ b/outputs/code-connect/visibility.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4012", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`visibility`, +}); diff --git a/outputs/code-connect/visibility_off.figma.ts b/outputs/code-connect/visibility_off.figma.ts new file mode 100644 index 00000000..317f6dfe --- /dev/null +++ b/outputs/code-connect/visibility_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4013", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`visibility-off`, +}); diff --git a/outputs/code-connect/volte.figma.ts b/outputs/code-connect/volte.figma.ts new file mode 100644 index 00000000..bfaf8c96 --- /dev/null +++ b/outputs/code-connect/volte.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=833:1916", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`volte`, +}); diff --git a/outputs/code-connect/volume_down.figma.ts b/outputs/code-connect/volume_down.figma.ts new file mode 100644 index 00000000..a31103b4 --- /dev/null +++ b/outputs/code-connect/volume_down.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:955", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`volume-down`, +}); diff --git a/outputs/code-connect/volume_mute.figma.ts b/outputs/code-connect/volume_mute.figma.ts new file mode 100644 index 00000000..b40bde3a --- /dev/null +++ b/outputs/code-connect/volume_mute.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:956", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`volume-mute`, +}); diff --git a/outputs/code-connect/volume_off.figma.ts b/outputs/code-connect/volume_off.figma.ts new file mode 100644 index 00000000..77894856 --- /dev/null +++ b/outputs/code-connect/volume_off.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:958", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`volume-off`, +}); diff --git a/outputs/code-connect/volume_up.figma.ts b/outputs/code-connect/volume_up.figma.ts new file mode 100644 index 00000000..6b81a3d5 --- /dev/null +++ b/outputs/code-connect/volume_up.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=257:959", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`volume-up`, +}); diff --git a/outputs/code-connect/warning.figma.ts b/outputs/code-connect/warning.figma.ts new file mode 100644 index 00000000..07994acd --- /dev/null +++ b/outputs/code-connect/warning.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4382", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`warning`, +}); diff --git a/outputs/code-connect/warning_outline.figma.ts b/outputs/code-connect/warning_outline.figma.ts new file mode 100644 index 00000000..ca68f336 --- /dev/null +++ b/outputs/code-connect/warning_outline.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4381", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`warning-outline`, +}); diff --git a/outputs/code-connect/watch.figma.ts b/outputs/code-connect/watch.figma.ts new file mode 100644 index 00000000..bef7aade --- /dev/null +++ b/outputs/code-connect/watch.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1513", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`watch`, +}); diff --git a/outputs/code-connect/wb.figma.ts b/outputs/code-connect/wb.figma.ts new file mode 100644 index 00000000..9fd95770 --- /dev/null +++ b/outputs/code-connect/wb.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1106:3241", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`wb`, +}); diff --git a/outputs/code-connect/wb_image.figma.ts b/outputs/code-connect/wb_image.figma.ts new file mode 100644 index 00000000..c0a67e43 --- /dev/null +++ b/outputs/code-connect/wb_image.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=1107:3271", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`wb-image`, +}); diff --git a/outputs/code-connect/world.figma.ts b/outputs/code-connect/world.figma.ts new file mode 100644 index 00000000..d5b841f9 --- /dev/null +++ b/outputs/code-connect/world.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:1742", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`world`, +}); diff --git a/outputs/code-connect/world_action.figma.ts b/outputs/code-connect/world_action.figma.ts new file mode 100644 index 00000000..5d91a4a6 --- /dev/null +++ b/outputs/code-connect/world_action.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:3855", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`world-action`, +}); diff --git a/outputs/code-connect/write.figma.ts b/outputs/code-connect/write.figma.ts new file mode 100644 index 00000000..88efe323 --- /dev/null +++ b/outputs/code-connect/write.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=4937:480", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`write`, +}); diff --git a/outputs/code-connect/youtube.figma.ts b/outputs/code-connect/youtube.figma.ts new file mode 100644 index 00000000..afc442f7 --- /dev/null +++ b/outputs/code-connect/youtube.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=788:1961", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`youtube`, +}); diff --git a/outputs/code-connect/zero_scale.figma.ts b/outputs/code-connect/zero_scale.figma.ts new file mode 100644 index 00000000..73e4bf8c --- /dev/null +++ b/outputs/code-connect/zero_scale.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=843:2196", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`zero-scale`, +}); diff --git a/outputs/code-connect/zoom_in.figma.ts b/outputs/code-connect/zoom_in.figma.ts new file mode 100644 index 00000000..83b0f205 --- /dev/null +++ b/outputs/code-connect/zoom_in.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4176", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`zoom-in`, +}); diff --git a/outputs/code-connect/zoom_in_map.figma.ts b/outputs/code-connect/zoom_in_map.figma.ts new file mode 100644 index 00000000..cc48a104 --- /dev/null +++ b/outputs/code-connect/zoom_in_map.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1632", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`zoom-in map`, +}); diff --git a/outputs/code-connect/zoom_out.figma.ts b/outputs/code-connect/zoom_out.figma.ts new file mode 100644 index 00000000..e9f5fa73 --- /dev/null +++ b/outputs/code-connect/zoom_out.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=243:4177", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`zoom-out`, +}); diff --git a/outputs/code-connect/zoom_out_map.figma.ts b/outputs/code-connect/zoom_out_map.figma.ts new file mode 100644 index 00000000..04484c20 --- /dev/null +++ b/outputs/code-connect/zoom_out_map.figma.ts @@ -0,0 +1,5 @@ +import { figma, html } from "@figma/code-connect/html"; +figma.connect("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=258:1633", { + props: { rounded: figma.enum("Style", { Round: true, Sharp: false }) }, + example: (props) => html`zoom-out map`, +}); diff --git a/package-lock.json b/package-lock.json index 9ea44825..8a4c23bd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,19 +1,21 @@ { "name": "@zebra-fed/zeta-icons", - "version": "0.5.6", + "version": "0.5.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@zebra-fed/zeta-icons", - "version": "0.5.6", + "version": "0.5.2", "license": "MIT", "devDependencies": { "@actions/core": "^1.10.0", + "@figma/code-connect": "^1.1.4", "@types/chai": "^4.3.16", "@types/md5": "^2.3.5", "@types/mocha": "^10.0.6", "@types/node": "^20.12.7", + "@types/react": "^18.3.11", "@types/sinon": "^17.0.3", "chai": "^5.1.0", "dotenv": "^16.4.5", @@ -21,6 +23,7 @@ "md5": "^2.3.0", "mocha": "^10.4.0", "oslllo-svg-fixer": "^3.0.0", + "prettier": "^3.3.3", "scale-that-svg": "^1.0.6", "sharp": "^0.33.3", "sinon": "^17.0.1", @@ -65,12 +68,13 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", - "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.25.7.tgz", + "integrity": "sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/highlight": "^7.24.2", + "@babel/highlight": "^7.25.7", "picocolors": "^1.0.0" }, "engines": { @@ -78,30 +82,32 @@ } }, "node_modules/@babel/compat-data": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", - "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.25.7.tgz", + "integrity": "sha512-9ickoLz+hcXCeh7jrcin+/SLWm+GkxE2kTvoYyp38p4WkdFXfQJxDFGWp/YHjiKLPx06z2A7W8XKuqbReXDzsw==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", - "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.25.7.tgz", + "integrity": "sha512-yJ474Zv3cwiSOO9nXJuqzvwEeM+chDuQ8GJirw+pZ91sCGCyOZ3dJkVE09fTV0VEVzXyLWhh3G/AolYTPX7Mow==", "dev": true, + "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", - "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.4", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.4", - "@babel/parser": "^7.24.4", - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", + "@babel/code-frame": "^7.25.7", + "@babel/generator": "^7.25.7", + "@babel/helper-compilation-targets": "^7.25.7", + "@babel/helper-module-transforms": "^7.25.7", + "@babel/helpers": "^7.25.7", + "@babel/parser": "^7.25.7", + "@babel/template": "^7.25.7", + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.7", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -126,29 +132,31 @@ } }, "node_modules/@babel/generator": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", - "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.25.7.tgz", + "integrity": "sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.25.7", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", - "jsesc": "^2.5.1" + "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", - "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.7.tgz", + "integrity": "sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-validator-option": "^7.23.5", - "browserslist": "^4.22.2", + "@babel/compat-data": "^7.25.7", + "@babel/helper-validator-option": "^7.25.7", + "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, @@ -161,6 +169,7 @@ "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "dev": true, + "license": "ISC", "dependencies": { "yallist": "^3.0.2" } @@ -170,6 +179,7 @@ "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, + "license": "ISC", "bin": { "semver": "bin/semver.js" } @@ -178,65 +188,34 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", - "dev": true - }, - "node_modules/@babel/helper-environment-visitor": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", - "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", - "dev": true, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-function-name": { - "version": "7.23.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", - "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", - "dev": true, - "dependencies": { - "@babel/template": "^7.22.15", - "@babel/types": "^7.23.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-hoist-variables": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", - "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } + "license": "ISC" }, "node_modules/@babel/helper-module-imports": { - "version": "7.24.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", - "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.7.tgz", + "integrity": "sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.0" + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", - "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.25.7.tgz", + "integrity": "sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-module-imports": "^7.25.7", + "@babel/helper-simple-access": "^7.25.7", + "@babel/helper-validator-identifier": "^7.25.7", + "@babel/traverse": "^7.25.7" }, "engines": { "node": ">=6.9.0" @@ -255,77 +234,71 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", - "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", - "dev": true, - "dependencies": { - "@babel/types": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-split-export-declaration": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.24.5.tgz", - "integrity": "sha512-5CHncttXohrHk8GWOFCcCl4oRD9fKosWlIRgWm4ql9VYioKm52Mk2xsmoohvm7f3JoiLSM5ZgJuRaf5QZZYd3Q==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.25.7.tgz", + "integrity": "sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/types": "^7.24.5" + "@babel/traverse": "^7.25.7", + "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", - "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.7.tgz", + "integrity": "sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.5.tgz", - "integrity": "sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.7.tgz", + "integrity": "sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", - "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.7.tgz", + "integrity": "sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==", "dev": true, + "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", - "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.25.7.tgz", + "integrity": "sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0" + "@babel/template": "^7.25.7", + "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.24.2", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", - "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.25.7.tgz", + "integrity": "sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.25.7", "chalk": "^2.4.2", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" @@ -335,10 +308,14 @@ } }, "node_modules/@babel/parser": { - "version": "7.24.4", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", - "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.25.7.tgz", + "integrity": "sha512-aZn7ETtQsjjGG5HruveUK06cU3Hljuhd9Iojm4M8WWv3wLE6OkE5PWbDUkItmMgegmccaITudyuW5RPYrYlgWw==", "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.25.7" + }, "bin": { "parser": "bin/babel-parser.js" }, @@ -542,33 +519,32 @@ "dev": true }, "node_modules/@babel/template": { - "version": "7.24.0", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", - "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.25.7.tgz", + "integrity": "sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/parser": "^7.24.0", - "@babel/types": "^7.24.0" + "@babel/code-frame": "^7.25.7", + "@babel/parser": "^7.25.7", + "@babel/types": "^7.25.7" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.24.1", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", - "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.24.1", - "@babel/generator": "^7.24.1", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.1", - "@babel/types": "^7.24.0", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.25.7.tgz", + "integrity": "sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.25.7", + "@babel/generator": "^7.25.7", + "@babel/parser": "^7.25.7", + "@babel/template": "^7.25.7", + "@babel/types": "^7.25.7", "debug": "^4.3.1", "globals": "^11.1.0" }, @@ -577,13 +553,14 @@ } }, "node_modules/@babel/types": { - "version": "7.24.5", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.5.tgz", - "integrity": "sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==", + "version": "7.25.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.25.7.tgz", + "integrity": "sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==", "dev": true, + "license": "MIT", "dependencies": { - "@babel/helper-string-parser": "^7.24.1", - "@babel/helper-validator-identifier": "^7.24.5", + "@babel/helper-string-parser": "^7.25.7", + "@babel/helper-validator-identifier": "^7.25.7", "to-fast-properties": "^2.0.0" }, "engines": { @@ -637,6 +614,259 @@ "node": ">=14" } }, + "node_modules/@figma/code-connect": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@figma/code-connect/-/code-connect-1.1.4.tgz", + "integrity": "sha512-/H+ig+IVR07/ZqzOTzMN6FDY50TVPgf6iLgyKSETrG+HojP6Kyn0ZGKuOegiOmx22qtgfq6kWtT/6EhYgZ1usQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.24.7", + "@babel/generator": "^7.24.7", + "@babel/parser": "^7.24.7", + "@babel/types": "^7.24.7", + "@storybook/csf-tools": "^7.6.7", + "axios": "^1.7.4", + "boxen": "5.1.1", + "chalk": "^4.1.2", + "commander": "^11.1.0", + "compare-versions": "^6.1.0", + "cross-spawn": "^7.0.3", + "dotenv": "^16.3.1", + "fast-fuzzy": "^1.12.0", + "find-up": "^5.0.0", + "glob": "^10.3.10", + "jsdom": "^24.1.1", + "lodash": "^4.17.21", + "minimatch": "^9.0.3", + "ora": "^5.4.1", + "parse5": "^7.1.2", + "prettier": "^2.8.8", + "prompts": "^2.4.2", + "strip-ansi": "^6.0.0", + "typescript": "5.4.2", + "zod": "^3.23.6", + "zod-validation-error": "^3.2.0" + }, + "bin": { + "figma": "bin/figma" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/@figma/code-connect/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@figma/code-connect/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@figma/code-connect/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@figma/code-connect/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@figma/code-connect/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@figma/code-connect/node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/@figma/code-connect/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@figma/code-connect/node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "dev": true, + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@figma/code-connect/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@figma/code-connect/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@figma/code-connect/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@figma/code-connect/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@figma/code-connect/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@figma/code-connect/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@figma/code-connect/node_modules/typescript": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz", + "integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, "node_modules/@img/sharp-darwin-arm64": { "version": "0.33.3", "resolved": "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.3.tgz", @@ -1087,33 +1317,136 @@ "url": "https://opencollective.com/libvips" } }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, + "license": "ISC", "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, + "license": "MIT", "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/@jest/console": { - "version": "29.7.0", + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", "dev": true, @@ -2284,6 +2617,17 @@ "node": ">= 8" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@resvg/resvg-js": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/@resvg/resvg-js/-/resvg-js-2.6.0.tgz", @@ -2549,6 +2893,122 @@ "integrity": "sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==", "dev": true }, + "node_modules/@storybook/channels": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.20.tgz", + "integrity": "sha512-4hkgPSH6bJclB2OvLnkZOGZW1WptJs09mhQ6j6qLjgBZzL/ZdD6priWSd7iXrmPiN5TzUobkG4P4Dp7FjkiO7A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/client-logger": "7.6.20", + "@storybook/core-events": "7.6.20", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/client-logger": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.20.tgz", + "integrity": "sha512-NwG0VIJQCmKrSaN5GBDFyQgTAHLNishUPLW1NrzqTDNAhfZUoef64rPQlinbopa0H4OXmlB+QxbQIb3ubeXmSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/global": "^5.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/core-events": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.20.tgz", + "integrity": "sha512-tlVDuVbDiNkvPDFAu+0ou3xBBYbx9zUURQz4G9fAq0ScgBOs/bpzcRrFb4mLpemUViBAd47tfZKdH4MAX45KVQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/csf": { + "version": "0.1.11", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.11.tgz", + "integrity": "sha512-dHYFQH3mA+EtnCkHXzicbLgsvzYjcDJ1JWsogbItZogkPHgSJM/Wr71uMkcvw8v9mmCyP4NpXJuu6bPoVsOnzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "type-fest": "^2.19.0" + } + }, + "node_modules/@storybook/csf-tools": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.20.tgz", + "integrity": "sha512-rwcwzCsAYh/m/WYcxBiEtLpIW5OH1ingxNdF/rK9mtGWhJxXRDV8acPkFrF8rtFWIVKoOCXu5USJYmc3f2gdYQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "7.6.20", + "fs-extra": "^11.1.0", + "recast": "^0.23.1", + "ts-dedent": "^2.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/csf/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@storybook/types": { + "version": "7.6.20", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.20.tgz", + "integrity": "sha512-GncdY3x0LpbhmUAAJwXYtJDUQEwfF175gsjH0/fxPkxPoV7Sef9TM41jQLJW/5+6TnZoCZP/+aJZTJtq3ni23Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@storybook/channels": "7.6.20", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, "node_modules/@tokenizer/token": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/@tokenizer/token/-/token-0.3.0.tgz", @@ -2620,12 +3080,59 @@ "@babel/types": "^7.20.7" } }, + "node_modules/@types/body-parser": { + "version": "1.19.5", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", + "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/connect": "*", + "@types/node": "*" + } + }, "node_modules/@types/chai": { "version": "4.3.16", "resolved": "https://registry.npmjs.org/@types/chai/-/chai-4.3.16.tgz", "integrity": "sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==", "dev": true }, + "node_modules/@types/connect": { + "version": "3.4.38", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", + "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/express": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", + "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.33", + "@types/qs": "*", + "@types/serve-static": "*" + } + }, + "node_modules/@types/express-serve-static-core": { + "version": "4.19.6", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", + "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*", + "@types/send": "*" + } + }, "node_modules/@types/graceful-fs": { "version": "4.1.9", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", @@ -2635,6 +3142,13 @@ "@types/node": "*" } }, + "node_modules/@types/http-errors": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", + "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/istanbul-lib-coverage": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", @@ -2665,6 +3179,13 @@ "integrity": "sha512-/i42wjYNgE6wf0j2bcTX6kuowmdL/6PE4IVitMpm2eYKBUuYCprdcWVK+xEF0gcV6ufMCRhtxmReGfc6hIK7Jw==", "dev": true }, + "node_modules/@types/mime": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", + "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", + "dev": true, + "license": "MIT" + }, "node_modules/@types/minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", @@ -2692,6 +3213,61 @@ "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true }, + "node_modules/@types/prop-types": { + "version": "15.7.13", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", + "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/qs": { + "version": "6.9.16", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.16.tgz", + "integrity": "sha512-7i+zxXdPD0T4cKDuxCUXJ4wHcsJLwENa6Z3dCu8cfCK743OGy5Nu1RmAGqDPsoTDINVEcdXKRvR/zre+P2Ku1A==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/range-parser": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", + "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.11", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.11.tgz", + "integrity": "sha512-r6QZ069rFTjrEYgFdOck1gK7FLVsgJE7tTz0pQBczlBNUhBNk0MQH4UbnFSwjpQLMkLzgqvBBa+qGpLje16eTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/send": { + "version": "0.17.4", + "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", + "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" + } + }, + "node_modules/@types/serve-static": { + "version": "1.15.7", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", + "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/http-errors": "*", + "@types/node": "*", + "@types/send": "*" + } + }, "node_modules/@types/sinon": { "version": "17.0.3", "resolved": "https://registry.npmjs.org/@types/sinon/-/sinon-17.0.3.tgz", @@ -2764,6 +3340,29 @@ "node": ">=0.4.0" } }, + "node_modules/agent-base": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.1.tgz", + "integrity": "sha512-H0TSyFNDMomMNJQBn8wFV5YC/2eJ+VXECwOadZJT554xP6cODZHPX3H9QMQECxvrgiSOP1pHjy1sMWQVYJOUOA==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dev": true, + "license": "ISC", + "dependencies": { + "string-width": "^4.1.0" + } + }, "node_modules/ansi-colors": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", @@ -2814,6 +3413,7 @@ "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, + "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, @@ -2888,6 +3488,38 @@ "node": ">=12" } }, + "node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "dev": true, + "license": "MIT", + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.7.7", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.7.7.tgz", + "integrity": "sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, "node_modules/babel-jest": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", @@ -3112,12 +3744,149 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "license": "MIT", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, "node_modules/bmp-js": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/bmp-js/-/bmp-js-0.1.0.tgz", "integrity": "sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==", "dev": true }, + "node_modules/boxen": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.1.tgz", + "integrity": "sha512-JtIQYts08AFAYGF4eSh3pUt3NQkYV/e75pRtQmAVTLNWR/1L7Bsswxlgzgk8nmLEM+gFszsIlA9BgD3XnSqp3g==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/boxen/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/boxen/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/boxen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", @@ -3147,9 +3916,9 @@ "dev": true }, "node_modules/browserslist": { - "version": "4.23.0", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", - "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.0.tgz", + "integrity": "sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==", "dev": true, "funding": [ { @@ -3165,11 +3934,12 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "caniuse-lite": "^1.0.30001587", - "electron-to-chromium": "^1.4.668", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" + "caniuse-lite": "^1.0.30001663", + "electron-to-chromium": "^1.5.28", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.0" }, "bin": { "browserslist": "cli.js" @@ -3238,6 +4008,26 @@ "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "dev": true }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/caller-callsite": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", @@ -3298,9 +4088,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001612", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001612.tgz", - "integrity": "sha512-lFgnZ07UhaCcsSZgWW0K5j4e69dK1u/ltrL9lTUiFOwNHs12S3UMIEYgBV0Z6C6hRDev7iRnMzzYmKabYdXF9g==", + "version": "1.0.30001667", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001667.tgz", + "integrity": "sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==", "dev": true, "funding": [ { @@ -3315,7 +4105,8 @@ "type": "github", "url": "https://github.com/sponsors/ai" } - ] + ], + "license": "CC-BY-4.0" }, "node_modules/chai": { "version": "5.1.0", @@ -3338,6 +4129,7 @@ "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, + "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -3436,6 +4228,32 @@ "node": ">=4" } }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/cli-progress": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/cli-progress/-/cli-progress-3.12.0.tgz", @@ -3448,6 +4266,19 @@ "node": ">=4" } }, + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, "node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", @@ -3459,6 +4290,16 @@ "wrap-ansi": "^7.0.0" } }, + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -3493,6 +4334,7 @@ "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, + "license": "MIT", "dependencies": { "color-name": "1.1.3" } @@ -3531,6 +4373,19 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, "node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -3540,6 +4395,13 @@ "node": ">= 10" } }, + "node_modules/compare-versions": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/compare-versions/-/compare-versions-6.1.1.tgz", + "integrity": "sha512-4hm4VPpIecmlg59CHXnRDnqGplJFrbLG4aFEl5vl6cK1u76ws3LLvX7ikFnTDl5vo39sjWD6AaDPYodJp/NNHg==", + "dev": true, + "license": "MIT" + }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -3706,12 +4568,46 @@ "node": "*" } }, + "node_modules/cssstyle": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-4.1.0.tgz", + "integrity": "sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==", + "dev": true, + "license": "MIT", + "dependencies": { + "rrweb-cssom": "^0.7.1" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "dev": true, + "license": "MIT" + }, "node_modules/cubic2quad": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/cubic2quad/-/cubic2quad-1.2.1.tgz", "integrity": "sha512-wT5Y7mO8abrV16gnssKdmIhIbA9wSkeMzhh27jAguKrV82i24wER0vL5TGhUJ9dbJNDcigoRZ0IAHFEEEI4THQ==", "dev": true }, + "node_modules/data-urls": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-5.0.0.tgz", + "integrity": "sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/debug": { "version": "4.3.4", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", @@ -3763,6 +4659,13 @@ "node": ">=0.10.0" } }, + "node_modules/decimal.js": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.4.3.tgz", + "integrity": "sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==", + "dev": true, + "license": "MIT" + }, "node_modules/dedent": { "version": "1.5.3", "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.3.tgz", @@ -3820,6 +4723,47 @@ "node": ">=0.10.0" } }, + "node_modules/defaults": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", + "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "clone": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, "node_modules/detect-libc": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", @@ -3892,11 +4836,19 @@ "url": "https://dotenvx.com" } }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true, + "license": "MIT" + }, "node_modules/electron-to-chromium": { - "version": "1.4.746", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.746.tgz", - "integrity": "sha512-jeWaIta2rIG2FzHaYIhSuVWqC6KJYo7oSBX4Jv7g+aVujKztfvdpf+n6MGwZdC5hQXbax4nntykLH2juIQrfPg==", - "dev": true + "version": "1.5.33", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.33.tgz", + "integrity": "sha512-+cYTcFB1QqD4j4LegwLfpCNxifb6dDFUAwk6RsLusCwIaZI6or2f+q8rs5tTB2YC53HhOlIbEaqHMAAC8IOIwA==", + "dev": true, + "license": "ISC" }, "node_modules/element-to-path": { "version": "1.2.0", @@ -3922,6 +4874,19 @@ "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", @@ -3931,11 +4896,35 @@ "is-arrayish": "^0.2.1" } }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, "node_modules/escalade": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.2.tgz", - "integrity": "sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "dev": true, + "license": "MIT", "engines": { "node": ">=6" } @@ -3945,6 +4934,7 @@ "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, + "license": "MIT", "engines": { "node": ">=0.8.0" } @@ -4022,6 +5012,16 @@ "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, + "node_modules/fast-fuzzy": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/fast-fuzzy/-/fast-fuzzy-1.12.0.tgz", + "integrity": "sha512-sXxGgHS+ubYpsdLnvOvJ9w5GYYZrtL9mkosG3nfuD446ahvoWEsSKBP7ieGmWIKVLnaxRDgUJkZMdxRgA2Ni+Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "graphemesplit": "^2.4.1" + } + }, "node_modules/fast-glob": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", @@ -4062,6 +5062,32 @@ "bser": "2.1.1" } }, + "node_modules/file-system-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", + "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fs-extra": "11.1.1", + "ramda": "0.29.0" + } + }, + "node_modules/file-system-cache/node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, "node_modules/file-type": { "version": "16.5.4", "resolved": "https://registry.npmjs.org/file-type/-/file-type-16.5.4.tgz", @@ -4113,6 +5139,87 @@ "flat": "cli.js" } }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "dev": true, + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", @@ -4175,6 +5282,26 @@ "node": "*" } }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", @@ -4262,6 +5389,7 @@ "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } @@ -4286,12 +5414,36 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "dev": true }, + "node_modules/graphemesplit": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/graphemesplit/-/graphemesplit-2.4.4.tgz", + "integrity": "sha512-lKrpp1mk1NH26USxC/Asw4OHbhSQf5XfrWZ+CDv/dFVvd1j17kFgMotdJvOesmHkbFX9P9sBfpH8VogxOWLg8w==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-base64": "^3.6.0", + "unicode-trie": "^2.0.0" + } + }, "node_modules/hard-rejection": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", @@ -4306,10 +5458,50 @@ "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, + "license": "MIT", "engines": { "node": ">=4" } }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dev": true, + "license": "MIT", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/has-value": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", @@ -4384,12 +5576,53 @@ "node": ">=10" } }, + "node_modules/html-encoding-sniffer": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-4.0.0.tgz", + "integrity": "sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^3.1.1" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, + "node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.1.0", + "debug": "^4.3.4" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/https-proxy-agent": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.5.tgz", + "integrity": "sha512-1e4Wqeblerz+tMKPIq2EMGiiWW1dIjZOksyHWSUm1rmuvw/how9hBHZ38lAGj5ID4Ik6EdkOw7NmWPy6LAwalw==", + "dev": true, + "license": "MIT", + "dependencies": { + "agent-base": "^7.0.2", + "debug": "4" + }, + "engines": { + "node": ">= 14" + } + }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", @@ -4399,6 +5632,19 @@ "node": ">=10.17.0" } }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -4608,6 +5854,16 @@ "node": ">=0.10.0" } }, + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", @@ -4638,6 +5894,13 @@ "node": ">=0.10.0" } }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true, + "license": "MIT" + }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", @@ -4766,8 +6029,24 @@ "html-escaper": "^2.0.0", "istanbul-lib-report": "^3.0.0" }, - "engines": { - "node": ">=8" + "engines": { + "node": ">=8" + } + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, "node_modules/jest": { @@ -6374,11 +7653,19 @@ "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==", "dev": true }, + "node_modules/js-base64": { + "version": "3.7.7", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-3.7.7.tgz", + "integrity": "sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==", + "dev": true, + "license": "BSD-3-Clause" + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/js-yaml": { "version": "3.14.1", @@ -6393,16 +7680,58 @@ "js-yaml": "bin/js-yaml.js" } }, + "node_modules/jsdom": { + "version": "24.1.3", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-24.1.3.tgz", + "integrity": "sha512-MyL55p3Ut3cXbeBEG7Hcv0mVM8pp8PBNWxRqchZnSfAiES1v1mRnMeFfaHWIPULpwsYfvO+ZmMZz5tGCnjzDUQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "cssstyle": "^4.0.1", + "data-urls": "^5.0.0", + "decimal.js": "^10.4.3", + "form-data": "^4.0.0", + "html-encoding-sniffer": "^4.0.0", + "http-proxy-agent": "^7.0.2", + "https-proxy-agent": "^7.0.5", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.12", + "parse5": "^7.1.2", + "rrweb-cssom": "^0.7.1", + "saxes": "^6.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.1.4", + "w3c-xmlserializer": "^5.0.0", + "webidl-conversions": "^7.0.0", + "whatwg-encoding": "^3.1.1", + "whatwg-mimetype": "^4.0.0", + "whatwg-url": "^14.0.0", + "ws": "^8.18.0", + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "canvas": "^2.11.2" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", + "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true, + "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { - "node": ">=4" + "node": ">=6" } }, "node_modules/json-parse-better-errors": { @@ -6429,6 +7758,19 @@ "node": ">=6" } }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, "node_modules/just-extend": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/just-extend/-/just-extend-6.2.0.tgz", @@ -6681,6 +8023,13 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/map-or-similar": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", + "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", + "dev": true, + "license": "MIT" + }, "node_modules/md5": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", @@ -6692,6 +8041,16 @@ "is-buffer": "~1.1.6" } }, + "node_modules/memoizerific": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", + "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", + "dev": true, + "license": "MIT", + "dependencies": { + "map-or-similar": "^1.5.0" + } + }, "node_modules/meow": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", @@ -6764,6 +8123,29 @@ "node": ">=4" } }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", @@ -6826,6 +8208,16 @@ "node": ">= 6" } }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, "node_modules/mkdirp": { "version": "0.5.6", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", @@ -7130,10 +8522,11 @@ "dev": true }, "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", - "dev": true + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true, + "license": "MIT" }, "node_modules/normalize-package-data": { "version": "3.0.3", @@ -7205,6 +8598,26 @@ "node": ">= 6" } }, + "node_modules/nwsapi": { + "version": "2.2.13", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.13.tgz", + "integrity": "sha512-cTGB9ptp9dY9A5VbMSe7fQBcl/tt22Vcqdq8+eN93rblOuE0aCFu4aZ2vMwct/2t+lFnosm8RkQW1I0Omb1UtQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/object-inspect": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.2.tgz", + "integrity": "sha512-IRZSRuzJiynemAXPYtPe5BoI/RESNYR7TYm50MC5Mqbd3Jmw5y790sErYw3V6SryFJD64b74qQQs9wn5Bg/k3g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/omggif": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", @@ -7248,6 +8661,106 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/ora/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/ora/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/oslllo-potrace": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/oslllo-potrace/-/oslllo-potrace-2.0.1.tgz", @@ -7355,6 +8868,13 @@ "node": ">=6" } }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "dev": true, + "license": "BlueOak-1.0.0" + }, "node_modules/pako": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", @@ -7420,6 +8940,19 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/parse5": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-7.1.2.tgz", + "integrity": "sha512-Czj1WaSVpaoj0wbhMzLmWD69anp2WH7FXMB9n1Sy8/ZFF9jolSQVMu1Ij5WIyGmcBmhk7EOndpO4mIpihVqAXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "entities": "^4.4.0" + }, + "funding": { + "url": "https://github.com/inikulin/parse5?sponsor=1" + } + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -7453,6 +8986,30 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "dev": true, + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "dev": true, + "license": "ISC" + }, "node_modules/path-to-regexp": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.2.tgz", @@ -7497,10 +9054,11 @@ "dev": true }, "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.0.tgz", + "integrity": "sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==", + "dev": true, + "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", @@ -7565,6 +9123,22 @@ "node": ">=4.0.0" } }, + "node_modules/prettier": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.3.3.tgz", + "integrity": "sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==", + "dev": true, + "license": "MIT", + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, "node_modules/pretty-format": { "version": "29.7.0", "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", @@ -7613,6 +9187,30 @@ "node": ">= 6" } }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true, + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", + "integrity": "sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==", + "dev": true, + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, "node_modules/pure-rand": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.1.0.tgz", @@ -7629,6 +9227,29 @@ } ] }, + "node_modules/qs": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", + "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "side-channel": "^1.0.6" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true, + "license": "MIT" + }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", @@ -7658,6 +9279,17 @@ "node": ">=8" } }, + "node_modules/ramda": { + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", + "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ramda" + } + }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", @@ -7792,6 +9424,23 @@ "node": ">=8.10.0" } }, + "node_modules/recast": { + "version": "0.23.9", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.9.tgz", + "integrity": "sha512-Hx/BGIbwj+Des3+xy5uAtAbdCyqK9y9wbBcDFDYanLS9JnMqf7OeF87HQwUimE87OEc72mr6tkKUKMBBL+hF9Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ast-types": "^0.16.1", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", + "tslib": "^2.0.1" + }, + "engines": { + "node": ">= 4" + } + }, "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", @@ -7829,6 +9478,13 @@ "node": ">=0.10.0" } }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true, + "license": "MIT" + }, "node_modules/resolve": { "version": "1.22.8", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", @@ -7876,6 +9532,20 @@ "node": ">=10" } }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", @@ -7886,6 +9556,13 @@ "node": ">=0.10.0" } }, + "node_modules/rrweb-cssom": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rrweb-cssom/-/rrweb-cssom-0.7.1.tgz", + "integrity": "sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==", + "dev": true, + "license": "MIT" + }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", @@ -7929,12 +9606,32 @@ } ] }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "license": "MIT" + }, "node_modules/sax": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", "dev": true }, + "node_modules/saxes": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-6.0.0.tgz", + "integrity": "sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==", + "dev": true, + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=v12.22.7" + } + }, "node_modules/scale-that-svg": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/scale-that-svg/-/scale-that-svg-1.0.6.tgz", @@ -7970,6 +9667,24 @@ "randombytes": "^2.1.0" } }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/sharp": { "version": "0.33.3", "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.33.3.tgz", @@ -8031,6 +9746,25 @@ "node": ">=8" } }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dev": true, + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", @@ -8238,6 +9972,22 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", @@ -8250,6 +10000,20 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -8314,6 +10078,7 @@ "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, + "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, @@ -8413,6 +10178,23 @@ "xml-reader": "2.4.3" } }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true, + "license": "MIT" + }, + "node_modules/telejson": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", + "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "memoizerific": "^1.11.3" + } + }, "node_modules/test-exclude": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", @@ -8433,6 +10215,20 @@ "integrity": "sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==", "dev": true }, + "node_modules/tiny-inflate": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz", + "integrity": "sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==", + "dev": true, + "license": "MIT" + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "dev": true, + "license": "MIT" + }, "node_modules/tinycolor2": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", @@ -8483,6 +10279,45 @@ "url": "https://github.com/sponsors/Borewit" } }, + "node_modules/tough-cookie": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.4.tgz", + "integrity": "sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.33", + "punycode": "^2.1.1", + "universalify": "^0.2.0", + "url-parse": "^1.5.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tough-cookie/node_modules/universalify": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/tr46": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-5.0.0.tgz", + "integrity": "sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "punycode": "^2.3.1" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", @@ -8492,6 +10327,16 @@ "node": ">=8" } }, + "node_modules/ts-dedent": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/ts-dedent/-/ts-dedent-2.2.0.tgz", + "integrity": "sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.10" + } + }, "node_modules/ts-jest": { "version": "29.1.2", "resolved": "https://registry.npmjs.org/ts-jest/-/ts-jest-29.1.2.tgz", @@ -8591,8 +10436,7 @@ "version": "2.6.2", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", - "dev": true, - "optional": true + "dev": true }, "node_modules/ttf2eot": { "version": "2.0.0", @@ -8682,6 +10526,34 @@ "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", "dev": true }, + "node_modules/unicode-trie": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz", + "integrity": "sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "pako": "^0.2.5", + "tiny-inflate": "^1.0.0" + } + }, + "node_modules/unicode-trie/node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true, + "license": "MIT" + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, "node_modules/unset-value": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-0.1.2.tgz", @@ -8696,9 +10568,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", "dev": true, "funding": [ { @@ -8714,9 +10586,10 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.2.0", + "picocolors": "^1.1.0" }, "bin": { "update-browserslist-db": "cli.js" @@ -8725,6 +10598,17 @@ "browserslist": ">= 4.21.0" } }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/utif": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/utif/-/utif-2.0.1.tgz", @@ -8822,6 +10706,19 @@ "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==", "dev": true }, + "node_modules/w3c-xmlserializer": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-5.0.0.tgz", + "integrity": "sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "xml-name-validator": "^5.0.0" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/walker": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", @@ -8850,6 +10747,16 @@ "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, + "node_modules/wcwidth": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", + "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", + "dev": true, + "license": "MIT", + "dependencies": { + "defaults": "^1.0.3" + } + }, "node_modules/webfont": { "version": "11.2.26", "resolved": "https://registry.npmjs.org/webfont/-/webfont-11.2.26.tgz", @@ -8878,6 +10785,53 @@ "node": ">= 12.0.0" } }, + "node_modules/webidl-conversions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-7.0.0.tgz", + "integrity": "sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/whatwg-encoding": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz", + "integrity": "sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "iconv-lite": "0.6.3" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-mimetype": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz", + "integrity": "sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + } + }, + "node_modules/whatwg-url": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-14.0.0.tgz", + "integrity": "sha512-1lfMEm2IEr7RIV+f4lUNPOqfFL+pO+Xw3fJSqmjX9AbXcXcYOkCe1P6+9VBZB6n94af16NfZf+sSk0JCBZC9aw==", + "dev": true, + "license": "MIT", + "dependencies": { + "tr46": "^5.0.0", + "webidl-conversions": "^7.0.0" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -8893,6 +10847,19 @@ "node": ">= 8" } }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/workerpool": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/workerpool/-/workerpool-6.2.1.tgz", @@ -8916,6 +10883,61 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true, + "license": "MIT" + }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -8968,6 +10990,28 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, + "node_modules/ws": { + "version": "8.18.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", + "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, "node_modules/xhr": { "version": "2.6.0", "resolved": "https://registry.npmjs.org/xhr/-/xhr-2.6.0.tgz", @@ -8989,6 +11033,16 @@ "eventemitter3": "^2.0.0" } }, + "node_modules/xml-name-validator": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz", + "integrity": "sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18" + } + }, "node_modules/xml-parse-from-string": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/xml-parse-from-string/-/xml-parse-from-string-1.0.1.tgz", @@ -9027,6 +11081,13 @@ "node": ">=4.0" } }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "dev": true, + "license": "MIT" + }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", @@ -9153,6 +11214,29 @@ "integrity": "sha512-SV5clWaUpOq/Ju/6D7m+WMB/pXW9WLxqMOZ1wymz6wmnbPx31tDOrzmITV1c5MtvEjnV5c+Fyuu9SnVtxXGqiw==", "dev": true, "license": "MIT" + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + }, + "node_modules/zod-validation-error": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/zod-validation-error/-/zod-validation-error-3.4.0.tgz", + "integrity": "sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "peerDependencies": { + "zod": "^3.18.0" + } } } } diff --git a/package.json b/package.json index d602b791..3ddba269 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@zebra-fed/zeta-icons", - "version": "0.5.6", + "version": "0.5.2", "type": "module", "main": "index.js", "types": "dist/index.d.ts", @@ -9,7 +9,7 @@ "dist/index.*s", "dist/outputs", "outputs/definitions", - "outputs/web", + "outputs/font", "outputs/icons", "outputs/icon-manifest.json", "CHANGELOG.md" @@ -18,19 +18,25 @@ ".": "./dist/index.js", "./icon-manifest.json": "./outputs/icon-manifest.json", "./icons/*": "./outputs/icons/*", - "./font/*": "./outputs/web/*", + "./font/*": "./outputs/font/*", "./index.css": "./index.css" }, "devDependencies": { "@actions/core": "^1.10.0", + "@figma/code-connect": "^1.1.4", "@types/chai": "^4.3.16", + "@types/md5": "^2.3.5", "@types/mocha": "^10.0.6", "@types/node": "^20.12.7", + "@types/react": "^18.3.11", "@types/sinon": "^17.0.3", "chai": "^5.1.0", "dotenv": "^16.4.5", "jest": "^29.7.0", + "md5": "^2.3.0", "mocha": "^10.4.0", + "oslllo-svg-fixer": "^3.0.0", + "prettier": "^3.3.3", "scale-that-svg": "^1.0.6", "sharp": "^0.33.3", "sinon": "^17.0.1", @@ -38,10 +44,7 @@ "ts-node": "^10.9.2", "typescript": "^5.4.5", "webfont": "^11.2.26", - "zeta-icon-name-checker": "^0.0.15", - "@types/md5": "^2.3.5", - "md5": "^2.3.0", - "oslllo-svg-fixer": "^3.0.0" + "zeta-icon-name-checker": "^0.0.15" }, "keywords": [ "zeta", @@ -55,11 +58,13 @@ "scripts": { "test": "tsc -p tsconfig.test.json && mocha dist/test/**/*.test.js -g fetchIcons -i --file ./test/setup.js --timeout 100000", "test:build": "tsc -p tsconfig.test.json && mocha dist/test/**/*.test.js -g fetchIcons --timeout 100000", + "test:connect": "tsc -p tsconfig.test.json && mocha dist/test/code-connect/**/*.test.js --timeout 100000", "build": "npx tsc -p tsconfig.build.json", "build:fetch-icons": "npx tsc -p tsconfig.scripts.json", "fetch-icons": "npm run build:fetch-icons && node --env-file=.env ./.github/fetch_icons/index.js", "regenerate-test-files": "ts-node ./test/regenerateTestFiles.ts", - "prepack": "npm run build" + "prepack": "npm run build", + "format-connect-files": "prettier outputs/code-connect/*.figma.ts --write" }, "repository": { "type": "git", @@ -69,4 +74,4 @@ "url": "https://github.com/zebratechnologies/zeta-icons/issues" }, "homepage": "https://github.com/zebratechnologies/zeta-icons#readme" -} \ No newline at end of file +} diff --git a/scripts/code-connect/generate-code-connect-files.ts b/scripts/code-connect/generate-code-connect-files.ts new file mode 100644 index 00000000..7caaba6f --- /dev/null +++ b/scripts/code-connect/generate-code-connect-files.ts @@ -0,0 +1,23 @@ +import { mkdirSync, rmSync, writeFileSync } from "fs"; +import { IconManifest } from "../fetch-icons/types/customTypes.js"; +import { generateConnectFileContents } from "./generate-connect-file-contents.js"; +import { getNodeText } from "./get-node-text.js"; +import { exec } from "child_process"; +import { toSnakeCase } from "../utils/fileUtils.js"; + +export const generateCodeConnectFiles = async (outputDir: string, iconManifest: IconManifest) => { + mkdirSync(outputDir, { recursive: true }); + + iconManifest.forEach((definition, id) => { + const fileContents = generateConnectFileContents(definition.name, id); + + const fileName = toSnakeCase(definition.name); + + writeFileSync(`${outputDir}/${fileName}.figma.ts`, getNodeText(fileContents)); + }); + + exec(`npm run format-connect-files`, (error, stdout, stderr) => { + console.log(stdout); + console.error(stderr); + }); +}; diff --git a/scripts/code-connect/generate-connect-file-contents.ts b/scripts/code-connect/generate-connect-file-contents.ts new file mode 100644 index 00000000..698e3d11 --- /dev/null +++ b/scripts/code-connect/generate-connect-file-contents.ts @@ -0,0 +1,90 @@ +import ts from "typescript"; +import { ZDS_ASSETS_FILE_ID } from "../../figmaConfig.js"; + +export const generateConnectFileContents = (iconName: string, id: string) => { + return ts.factory.createSourceFile( + [ + getImportStatement(), + ts.factory.createExpressionStatement( + ts.factory.createCallExpression( + ts.factory.createPropertyAccessExpression( + ts.factory.createIdentifier("figma"), + ts.factory.createIdentifier("connect"), + ), + undefined, + [ + ts.factory.createStringLiteral(getFigmaLink(id)), + ts.factory.createObjectLiteralExpression([getPropsObject(), getTemplate(iconName)]), + ], + ), + ), + ], + ts.factory.createToken(ts.SyntaxKind.EndOfFileToken), + ts.NodeFlags.None, + ); +}; + +const getFigmaLink = (id: string) => `https://www.figma.com/design/${ZDS_ASSETS_FILE_ID}?node-id=${id}`; + +const getImportStatement = () => + ts.factory.createImportDeclaration( + undefined, + ts.factory.createImportClause( + false, + undefined, + ts.factory.createNamedImports([ + ts.factory.createImportSpecifier(false, undefined, ts.factory.createIdentifier("figma")), + ts.factory.createImportSpecifier(false, undefined, ts.factory.createIdentifier("html")), + ]), + ), + ts.factory.createStringLiteral("@figma/code-connect/html"), + ); + +const getPropsObject = () => + ts.factory.createPropertyAssignment( + "props", + ts.factory.createObjectLiteralExpression([ + ts.factory.createPropertyAssignment( + "rounded", + ts.factory.createCallExpression( + ts.factory.createPropertyAccessExpression( + ts.factory.createIdentifier("figma"), + ts.factory.createIdentifier("enum"), + ), + undefined, + [ + ts.factory.createStringLiteral("Style"), + ts.factory.createObjectLiteralExpression([ + ts.factory.createPropertyAssignment("Round", ts.factory.createTrue()), + ts.factory.createPropertyAssignment("Sharp", ts.factory.createFalse()), + ]), + ], + ), + ), + ]), + ); + +const getTemplate = (iconName: string) => + ts.factory.createPropertyAssignment( + "example", + ts.factory.createArrowFunction( + undefined, + undefined, + [ts.factory.createParameterDeclaration(undefined, undefined, "props")], + undefined, + undefined, + ts.factory.createTaggedTemplateExpression( + ts.factory.createIdentifier("html"), + undefined, + ts.factory.createTemplateExpression(ts.factory.createTemplateHead("${iconName.toLowerCase().replace(" ", "-")}`), + ), + ]), + ), + ), + ); diff --git a/scripts/code-connect/get-node-text.ts b/scripts/code-connect/get-node-text.ts new file mode 100644 index 00000000..156e6b85 --- /dev/null +++ b/scripts/code-connect/get-node-text.ts @@ -0,0 +1,9 @@ +import ts from "typescript"; + +export const getNodeText = (node: ts.Node): string => { + return printer.printNode(ts.EmitHint.Unspecified, node, tsFile); +}; + +const tsFile = ts.createSourceFile("", "", ts.ScriptTarget.Latest, false, ts.ScriptKind.TS); + +const printer = ts.createPrinter({ newLine: ts.NewLineKind.LineFeed }); diff --git a/scripts/definitions/global.d.ts b/scripts/fetch-icons/definitions/global.d.ts similarity index 73% rename from scripts/definitions/global.d.ts rename to scripts/fetch-icons/definitions/global.d.ts index b035acde..c62b801e 100644 --- a/scripts/definitions/global.d.ts +++ b/scripts/fetch-icons/definitions/global.d.ts @@ -2,7 +2,6 @@ export {}; declare global { interface String { - toSnakeCase(separator?: string): string; capitalize(): string; } interface SVGFixer { diff --git a/scripts/definitions/oslllo-svg-fixer.d.ts b/scripts/fetch-icons/definitions/oslllo-svg-fixer.d.ts similarity index 100% rename from scripts/definitions/oslllo-svg-fixer.d.ts rename to scripts/fetch-icons/definitions/oslllo-svg-fixer.d.ts diff --git a/scripts/definitions/scale-that-svg.d.ts b/scripts/fetch-icons/definitions/scale-that-svg.d.ts similarity index 100% rename from scripts/definitions/scale-that-svg.d.ts rename to scripts/fetch-icons/definitions/scale-that-svg.d.ts diff --git a/scripts/fetchIcons.ts b/scripts/fetch-icons/fetchIcons.ts similarity index 89% rename from scripts/fetchIcons.ts rename to scripts/fetch-icons/fetchIcons.ts index e6b9458c..6f9fc08e 100644 --- a/scripts/fetchIcons.ts +++ b/scripts/fetch-icons/fetchIcons.ts @@ -1,14 +1,14 @@ -import { getFigmaDocument, getImageFiles } from "./utils/api.js"; -import { extractCategoryNames, extractCategoryNodes, findIconPage } from "./utils/figmaUtils.js"; -import { clearDirectory } from "./utils/fileUtils.js"; import { generateDefinitionFiles } from "./generators/generateDefinitionFiles.js"; import { generateFonts } from "./generators/generateFonts.js"; import { generateIconManifest } from "./generators/generateIconManifest.js"; -import { optimizeSVGs } from "./utils/optimizeSvgs.js"; -import { saveSVGs } from "./utils/saveSvgs.js"; -import { generateHash } from "./utils/hash.js"; import { ComponentSets } from "./types/figmaTypes.js"; import { generatePNGs } from "./generators/generatePNGs.js"; +import { getFigmaDocument, getImageFiles } from "../utils/api.js"; +import { findIconPage, extractCategoryNodes, extractCategoryNames } from "../utils/figmaUtils.js"; +import { clearDirectory } from "../utils/fileUtils.js"; +import { generateHash } from "../utils/hash.js"; +import { optimizeSVGs } from "../utils/optimizeSvgs.js"; +import { saveSVGs } from "../utils/saveSvgs.js"; export const iconsDir = "/icons"; export const tempDir = "/temp"; @@ -34,7 +34,7 @@ export default async function main( iconPageName: string, oldHash: string, outputDir: string, - verboseLogs: boolean + verboseLogs: boolean, ): Promise { const iconsOutputDir = outputDir + iconsDir; const tempOutputDir = outputDir + tempDir; diff --git a/scripts/generators/generateDefinitionFiles.ts b/scripts/fetch-icons/generators/generateDefinitionFiles.ts similarity index 98% rename from scripts/generators/generateDefinitionFiles.ts rename to scripts/fetch-icons/generators/generateDefinitionFiles.ts index e87045d4..6b8eaf5e 100644 --- a/scripts/generators/generateDefinitionFiles.ts +++ b/scripts/fetch-icons/generators/generateDefinitionFiles.ts @@ -1,7 +1,7 @@ -import { createFolder } from "../utils/fileUtils.js"; import { GenerateFontResult, IconManifest } from "../types/customTypes.js"; import { readFileSync, writeFileSync } from "fs"; import { flutterDir, webDir } from "../fetchIcons.js"; +import { createFolder } from "../../utils/fileUtils.js"; /** * Writes out `icon-manifest.json`, `icons.g.dart` and `icon-types.ts`. diff --git a/scripts/generators/generateFonts.ts b/scripts/fetch-icons/generators/generateFonts.ts similarity index 95% rename from scripts/generators/generateFonts.ts rename to scripts/fetch-icons/generators/generateFonts.ts index 240147ff..29618413 100644 --- a/scripts/generators/generateFonts.ts +++ b/scripts/fetch-icons/generators/generateFonts.ts @@ -1,8 +1,8 @@ import { Result } from "webfont/dist/src/types/Result.js"; import { FontType, GenerateFontResult } from "../types/customTypes.js"; import { webfont } from "webfont"; -import { createFolder, getIconFileName } from "../utils/fileUtils.js"; import { writeFileSync } from "fs"; +import { createFolder, getIconFileName, toSnakeCase } from "../../utils/fileUtils.js"; const GITHUB_URL = "https://raw.githubusercontent.com/ZebraDevs/zeta-icons/main/outputs/png/"; /** @@ -22,7 +22,7 @@ export const generateFonts = async ( inputDir: string, fontName: string, ttfDir: string, - woff2Dir: string + woff2Dir: string, ): Promise => { const fontResult: GenerateFontResult = { dartDefinitions: [], @@ -42,7 +42,7 @@ export const generateFonts = async ( writeFileSync(`${woff2Path}-round.woff2`, roundFonts.woff2); } else { throw new Error( - "Failed to build round fonts: " + (!roundFonts.ttf ? "ttf " : "") + !roundFonts.woff2 ? "woff2" : "" + "Failed to build round fonts: " + (!roundFonts.ttf ? "ttf " : "") + !roundFonts.woff2 ? "woff2" : "", ); } @@ -52,7 +52,7 @@ export const generateFonts = async ( writeFileSync(`${woff2Path}-sharp.woff2`, sharpFonts.woff2); } else { throw new Error( - "Failed to build sharp fonts: " + (!sharpFonts.ttf ? "ttf " : "") + !sharpFonts.woff2 ? "woff2" : "" + "Failed to build sharp fonts: " + (!sharpFonts.ttf ? "ttf " : "") + !sharpFonts.woff2 ? "woff2" : "", ); } return fontResult; @@ -115,7 +115,7 @@ function getDartIconDefinition(iconName: string, unicode: string, type: FontType const iconPreview = getIconPreview(iconName, type); if (type == undefined) { - iconName = iconName.toSnakeCase(); + iconName = toSnakeCase(iconName); } else { iconName = getIconFileName(iconName, type); } diff --git a/scripts/generators/generateIconManifest.ts b/scripts/fetch-icons/generators/generateIconManifest.ts similarity index 93% rename from scripts/generators/generateIconManifest.ts rename to scripts/fetch-icons/generators/generateIconManifest.ts index 6e570f1f..0b02e101 100644 --- a/scripts/generators/generateIconManifest.ts +++ b/scripts/fetch-icons/generators/generateIconManifest.ts @@ -1,7 +1,7 @@ import { checkIconName, checkCategoryName, ErrorSeverity } from "zeta-icon-name-checker"; -import { extractIconSets, getSearchTerms } from "../utils/figmaUtils.js"; +import { extractIconSets, getSearchTerms } from "../../utils/figmaUtils.js"; import { IconManifest } from "../types/customTypes.js"; -import { getIconFileName } from "../utils/fileUtils.js"; +import { getIconFileName, toSnakeCase } from "../../utils/fileUtils.js"; import { ComponentSets, FigmaNode } from "../types/figmaTypes.js"; /** @@ -26,7 +26,7 @@ export function generateIconManifest( const usedIconNames: string[] = []; // A list of used icon names for (const category of categoryNodes) { - const formattedCategoryName = category.name.toSnakeCase(); + const formattedCategoryName = toSnakeCase(category.name); if (verboseLogs) { console.log(`---------------- Current category: ${formattedCategoryName} ----------------`); diff --git a/scripts/generators/generatePNGs.ts b/scripts/fetch-icons/generators/generatePNGs.ts similarity index 93% rename from scripts/generators/generatePNGs.ts rename to scripts/fetch-icons/generators/generatePNGs.ts index 0122a0fd..4fed9103 100644 --- a/scripts/generators/generatePNGs.ts +++ b/scripts/fetch-icons/generators/generatePNGs.ts @@ -1,6 +1,6 @@ import sharp from "sharp"; import { readdirSync } from "fs"; -import { createFolder } from "../utils/fileUtils.js"; +import { createFolder } from "../../utils/fileUtils.js"; /** * Builds and saves PNG versions of all icons. diff --git a/scripts/templates/icon-types.ts.template b/scripts/fetch-icons/templates/icon-types.ts.template similarity index 100% rename from scripts/templates/icon-types.ts.template rename to scripts/fetch-icons/templates/icon-types.ts.template diff --git a/scripts/templates/icons.dart.template b/scripts/fetch-icons/templates/icons.dart.template similarity index 99% rename from scripts/templates/icons.dart.template rename to scripts/fetch-icons/templates/icons.dart.template index 738e5d69..589af2c6 100644 --- a/scripts/templates/icons.dart.template +++ b/scripts/fetch-icons/templates/icons.dart.template @@ -37,4 +37,4 @@ abstract class ZetaIcons { /// List of all icons. const Map icons = { {{iconNames}} -}; +}; \ No newline at end of file diff --git a/scripts/types/customTypes.ts b/scripts/fetch-icons/types/customTypes.ts similarity index 100% rename from scripts/types/customTypes.ts rename to scripts/fetch-icons/types/customTypes.ts diff --git a/scripts/types/figmaTypes.ts b/scripts/fetch-icons/types/figmaTypes.ts similarity index 100% rename from scripts/types/figmaTypes.ts rename to scripts/fetch-icons/types/figmaTypes.ts diff --git a/scripts/utils/api.ts b/scripts/utils/api.ts index e31a3047..33d0c2e3 100644 --- a/scripts/utils/api.ts +++ b/scripts/utils/api.ts @@ -1,5 +1,5 @@ -import { ImageManifest, IconManifest } from "../types/customTypes.js"; -import { DocumentResponse } from "../types/figmaTypes.js"; +import { ImageManifest, IconManifest } from "../fetch-icons/types/customTypes.js"; +import { DocumentResponse } from "../fetch-icons/types/figmaTypes.js"; /** * Fetches a Figma document. diff --git a/scripts/utils/figmaUtils.ts b/scripts/utils/figmaUtils.ts index e4625052..fe364152 100644 --- a/scripts/utils/figmaUtils.ts +++ b/scripts/utils/figmaUtils.ts @@ -1,4 +1,5 @@ -import { ComponentSets, FigmaNode } from "../types/figmaTypes.js"; +import { ComponentSets, FigmaNode } from "../fetch-icons/types/figmaTypes.js"; +import { toSnakeCase } from "./fileUtils.js"; const IGNORED_ICONSETS = ["dna"]; @@ -62,7 +63,7 @@ export function getSearchTerms(iconSetId: string, componentSets: ComponentSets): * @returns A list of the category names in snake_case */ export function extractCategoryNames(categoryNodes: FigmaNode[]): string[] { - return categoryNodes.map((category) => category.name.toSnakeCase()); + return categoryNodes.map((category) => toSnakeCase(category.name)); } export function checkFigmaTokenIsSet(figmaToken: string | undefined): void { diff --git a/scripts/utils/fileUtils.ts b/scripts/utils/fileUtils.ts index 88fd8d99..e34a8f89 100644 --- a/scripts/utils/fileUtils.ts +++ b/scripts/utils/fileUtils.ts @@ -1,7 +1,7 @@ import { mkdirSync, existsSync, rmSync, writeFileSync } from "fs"; import * as path from "path"; import { scale } from "scale-that-svg"; -import { FontType } from "../types/customTypes.js"; +import { FontType } from "../fetch-icons/types/customTypes.js"; /** * Creates a directory recursively; creating intermediate directories if needed. @@ -27,15 +27,15 @@ export const createFolder = (dir: string): boolean => { * @param {FontType} type - Round or sharp. * @returns {string} Icon name in snake_case. */ -export const getIconFileName = (iconName: string, type: FontType): string => `${iconName.toSnakeCase()}_${type}`; +export const getIconFileName = (iconName: string, type: FontType): string => `${toSnakeCase(iconName)}_${type}`; /** * Formats string in snake_case. * * @param {string} separator - Character used as word separator in string. Defaults to ` ` (space). */ -String.prototype.toSnakeCase = function (separator: string = " "): string { - return `${this.toLowerCase().replaceAll(separator, "_")}`; +export const toSnakeCase = function (string: string, separator: string = " "): string { + return `${string.toLowerCase().replaceAll(separator, "_")}`; }; /** diff --git a/scripts/utils/hash.ts b/scripts/utils/hash.ts index a80648db..ecb7ac21 100644 --- a/scripts/utils/hash.ts +++ b/scripts/utils/hash.ts @@ -1,5 +1,5 @@ import md5 from "md5"; -import { ImageManifest } from "../types/customTypes.js"; +import { ImageManifest } from "../fetch-icons/types/customTypes.js"; /** * Applies md5 hash to a Map. diff --git a/scripts/utils/saveSvgs.ts b/scripts/utils/saveSvgs.ts index 059003c9..3f88dc25 100644 --- a/scripts/utils/saveSvgs.ts +++ b/scripts/utils/saveSvgs.ts @@ -1,5 +1,5 @@ import { createFolder, writeSVGToFile } from "./fileUtils.js"; -import { ImageDefinition, ImageManifest } from "../types/customTypes.js"; +import { ImageDefinition, ImageManifest } from "../fetch-icons/types/customTypes.js"; /** * Saves svg files within icons object to `{category}/{icon-name}.svg`. diff --git a/test/code-connect/code-connect.test.ts b/test/code-connect/code-connect.test.ts new file mode 100644 index 00000000..4aa7bf22 --- /dev/null +++ b/test/code-connect/code-connect.test.ts @@ -0,0 +1,18 @@ +import { getNodeText } from "../../scripts/code-connect/get-node-text.js"; +import { generateConnectFileContents } from "../../scripts/code-connect/generate-connect-file-contents.js"; +import { generateCodeConnectFiles } from "../../scripts/code-connect/generate-code-connect-files.js"; +import { assert } from "chai"; +import { figmaConnectFile } from "../data/figma-connect-file.js"; +import { manifest } from "../data/index.js"; + +describe("code-connect", () => { + it("should generate the correct file contents", () => { + const result = generateConnectFileContents("star", "123"); + + assert.equal(getNodeText(result), getNodeText(figmaConnectFile)); + }); + + it("should generate code connect files from an icon manifes", () => { + generateCodeConnectFiles(`./test/outputs/code-connect`, manifest); + }); +}); diff --git a/test/data/categoryNodes.json b/test/data/categoryNodes.json index 5cd743b2..c460361c 100644 --- a/test/data/categoryNodes.json +++ b/test/data/categoryNodes.json @@ -1 +1 @@ -[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}] \ No newline at end of file +[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]}] \ No newline at end of file diff --git a/test/data/documentResponse.json b/test/data/documentResponse.json index 083ec19c..a344b0a8 100644 --- a/test/data/documentResponse.json +++ b/test/data/documentResponse.json @@ -1 +1 @@ -{"document":{"id":"0:0","name":"Document","type":"DOCUMENT","scrollBehavior":"SCROLLS","children":[{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"}}]},"components":{"176:5663":{"key":"bf07221265357cac7113413da91bbd25e4d95bc2","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5666":{"key":"37e5859e9888b39c556dbbc7f534cd22d33fccf1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5670":{"key":"4a646b8f23f9fa19ce5776d8b844eff4e3998a92","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5673":{"key":"f3e38a1df3d2a0dd143c59369802031b01f5eba4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5677":{"key":"be0cce59ad61d9da24dd68feeccb95b91d2b8e6f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5680":{"key":"69b6781d64a23e01377d64661a213d688088fb77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5684":{"key":"3952dee885bfac2fd916497e3499f36ee497930a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5687":{"key":"0bf1042906eff5c0a8e372f3498aec15dc62e2f2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5691":{"key":"f0c83ab82052eae1c32899d1969cf1340c2171cb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5694":{"key":"02883f3e322c0f34d266bbcf40717628783471ae","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5698":{"key":"77c8ba1775d2e118e15850b9714609583a961f50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5701":{"key":"54b26c0d79e51f0042d9655d6674a3680da76a24","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5705":{"key":"60997624acf02a8ca29b468419571610900bb7a4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5708":{"key":"595c3dc44f8f763f0220a727a0d00ad52994366e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5712":{"key":"996c8bc6987d808784ffa85766c9043862c36ac0","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5715":{"key":"a24c37ae2b697cd2564920f6f3bd9ef0bfe9b942","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5719":{"key":"6884aa47b070b5c5b107e85663b09832ca47105b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5722":{"key":"f7634a6fee0c33d8cdcf9184b8350ff10bf5670a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5726":{"key":"0ddf6d8c4dcf36fe6d3908fc129aede965b9a182","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5729":{"key":"b70fd7183395df9e3c690821b319a97a5d54c72f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5733":{"key":"659dfb67d970c19aca03864f26fb56d8c3614c50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5736":{"key":"8927c066336eb7d109bc4a355491e3909be59538","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5740":{"key":"f8ad66e31add1e1fd3b51a00eb8df963e8f64cca","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5743":{"key":"f2f07d0efd39e8626b83b50f05eb220945110245","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5747":{"key":"3cbec281a7ea74297c79a1e5654c39f60249c515","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5750":{"key":"e9c063d498b06612d16f8e6200baa5153d1fd2ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5754":{"key":"08ef5c3b37b0b9867e5221cb3bb74ea24f68fd14","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5757":{"key":"f4b93f51e74eb1bf89b6aaccda161e643d162191","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5761":{"key":"57076834105d23117f790bb0559015ea5e4dbad4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5764":{"key":"eb41de7d6bdfe8c176af1869b44bf336ec439585","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5768":{"key":"348a9cfc5fcb788c0256a61b0413bfaf8a715977","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5771":{"key":"849b66c2bac8b3a6feb7aff32efca3711e692859","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5775":{"key":"e27dbf6aa03bfa1ce82645524479d87c547b5a05","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5778":{"key":"cc2168eee3309e11de97d001f05e8db6ccddfb27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5782":{"key":"ac0ac344b675c0f1c6803cd2379463b94f652ccb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5785":{"key":"b9b43465c2c93e41cffbe2e928ae22f6b5e378e3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5789":{"key":"c900d0bebfe7d7c1bf5933c3d75089755d5cb859","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5792":{"key":"01a0dda94fbb581616e60c6cd1ccbd5a331ded4d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5796":{"key":"cdbf5d03b1101c8c26c6e49c3c2370c20d71802e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5799":{"key":"f56a9820bac433ed44240d76877698953d9f3eb1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5803":{"key":"adc4222edf1df2950da08914b0ea636b9b0b1d66","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5806":{"key":"48d290d322a29078e3cb7313e244314ed32fafaf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5810":{"key":"e3a5efe9cf12b2a379b2886d9ffff25cbe243b33","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5813":{"key":"386d2acab0cb44238277235f5f1bd5c3093426b2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5817":{"key":"847a511f71f74f216e7910ec1a63ac78f569ba96","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5820":{"key":"f4eb7d7393f7af13ba16d3c2d3c5a629441cdd8c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5823":{"key":"2fc2428ecea6351cd8e9269bbb43b9762daa66f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5826":{"key":"d3d8ecdc0def6e4ca5dc701e1788d01b2f0a5c91","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5830":{"key":"18f43d394e408f315a1d502ebb65e2dea27dffd3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5833":{"key":"4efe6ddc1b783f4ca6161469240a210c05c7e10f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5840":{"key":"e9d7c323d2d837d94910f68aec2e56c066fc47fd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5843":{"key":"54711c8e12c32737a18b548b80f20b94ba708607","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5847":{"key":"d8dd1f3930bfaf9425be0e501d038ae66046dfb8","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5850":{"key":"42aa642f7c2f3a7903ff076d36240bca5db9de98","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5854":{"key":"0cc7f775e92adde871437f4b81d8c68688b53702","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5857":{"key":"07989df1f92af1e0e147066fd7ddac6d582d0bb3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5861":{"key":"916206df87e6f70b973fea7a3f9fcb2c5491dad9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5864":{"key":"a105571c260477118a0f0c9f727288841fbb32bb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5868":{"key":"6cccfb368983c72ede6785ec138071acfb6c97eb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5871":{"key":"63c72fd84c779b8d29d8475e94e47276278cb523","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5875":{"key":"eaba07600e4beef86751e88e0a3c4b53ee50cc7c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5878":{"key":"dbd1057145fb2a59b90b81cd86ba9b9a891529ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5882":{"key":"aaa0087de590789b9f486a5117bf368f820e4291","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5885":{"key":"fa47d408c041af780e4ee7a52747ab1c41057ec4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5889":{"key":"0babdeb7b21008b3b5227ffbc416147f6411100d","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5892":{"key":"a12895b5a67a78094488bc90cbc9ff73935bd077","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5896":{"key":"0802346a0e1fa83d92b29e4202640bae1a61aefe","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5899":{"key":"7eb2f613c6d7389578e744a096f2b70f5940e0ba","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5903":{"key":"411be0eecc5edb1ca96ded0749fb8092d7b39c1b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5906":{"key":"d7e2f78efc1264b8e9603b25fcfd127fbdf52a37","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5910":{"key":"bc46dfdc0798b03910006f2732a10bc7a7e1f846","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5913":{"key":"e83518f4a565b0c91141584e9f48aeef1f8d1405","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5917":{"key":"65565a6977788de124cb3dde5a5ab0f305f829cd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5920":{"key":"ae9515ebabbd4ed30a791f835f983cdfce944103","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5924":{"key":"8a29e18a2820c1b4052f4e7c62a45b141f052a17","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5927":{"key":"9beafe1cb5e2ad6b7bb87a2dcf116ddc8d945d9d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5931":{"key":"1e2ee945d34bd0035d8f41e77dd9d11d7f665218","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5934":{"key":"160d4d8a22a21e8a133d3dbe149763a1710771d0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5938":{"key":"3ddeaad64e4b9c5063530fa888c527173f264d64","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5941":{"key":"25d125abc83ec4f3a687dd4e13288bbc42930eac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5945":{"key":"5cebfaba3ff2ad32fe256c013ffba76dbc16b644","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5948":{"key":"4f87d9d0942a1aee0e0946f0a599cb5a6ede7ebd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5952":{"key":"78f772de4a49a7b8baee7621da07e585f9161d84","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5955":{"key":"05bc86a7f0707e01d51355b8e9bb7efddd827b38","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5959":{"key":"e4e7fce8f9c1f1aa97dc4ee54a6b790e8d336168","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5962":{"key":"b773978e5bce9706e860e3fb6e7f89d8e27c9b27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5966":{"key":"76db925902b809aec5dad526484395a18fb99056","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5969":{"key":"89374a5f040547803c6748fd6e7b8f9f1f675740","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5973":{"key":"8d68b45d8f65454e84d6e0f3b2e5ab22118d592a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5976":{"key":"5c1d60744d9ef2e82735d994a965400985d25878","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5980":{"key":"92eedb872b641f501efc3b6572643d8ca6d4a11e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5983":{"key":"5a9950a29738b452f77fbcfd83afe702dfe8699d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5987":{"key":"cf0575e016968fe4915434161a4dbc8c7cf2bd98","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5990":{"key":"1147fa004ecf89d13aab043b8490ac348ecac70e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5994":{"key":"b483ac6adc7f9971674150edae5b4071dda9ae3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:5997":{"key":"4cac12143ac9e59da5b1033310ac76bc1230db41","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:6004":{"key":"9f0378cb51ad545073c9b88eae292171c561d57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6007":{"key":"ae5a0876455e8ec8c2a41b192bcad7da2d14104d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6011":{"key":"b4565597e50d6e64e14e55004b593aa0901544d3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6014":{"key":"4a15edc63cb18824feee420a3c6cab6a9acb963c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6018":{"key":"f6b3a4b3bd316bc6111dff8096367f49baf0d1d9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6021":{"key":"6d2c421dc391ae8b9eab5085be4c5f30cce8812e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6025":{"key":"8c08fdb2256ff992d2776111401a1a88b2314109","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6028":{"key":"3bb4e381e85c91fdfbcbc1da071a6040d841e848","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6032":{"key":"910d4f7eb94b5534c606d021a51bafe1f3308792","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6035":{"key":"945311097cb31ef8ca275786d86db279f5944a6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6039":{"key":"7db1385a963851e89701212a782dcca6cd8b1885","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6042":{"key":"4710c41f9083affda7b87f988fd0f84887c9ede1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6046":{"key":"083d91dc6de5a63039bae193486b0404f24cb57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6049":{"key":"45b80e55b38dc4364cf36f7194453a967665a56e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6053":{"key":"4d299add71dae9e9964f73ad7753b9eac785d290","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6056":{"key":"093b243bccfa75c83cef6d0b67e6e7e8d63af1e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6060":{"key":"d03aae79496f1fa76e74ea63369c8649a6416868","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6063":{"key":"7774acd9e42ac8751c010bf8db27d9551d5c2167","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6067":{"key":"82e2fd349789dd04b199b1e03343c4a4bc617b3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6070":{"key":"101f0f03631afe594c32a5d99a4626e3775260c5","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6074":{"key":"cfc0c72e92f7b1c49917b14592adbdbe10b6f47b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6077":{"key":"aabf57a51ca1a3675944a9f3678c5ca80e9121cf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6081":{"key":"c1e6250fef0fc4366c92baffe53d5e1e22301816","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6084":{"key":"9100589d92788174c7737011f68db98fd8fad5db","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6088":{"key":"4a02ec293d168f56be27ae43e34a708bbbffe769","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6095":{"key":"ef1ee26872759d9734f712c94c45085b802a1dd1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6103":{"key":"2d9445fab18e9efcea509fb71db1f6d15ed595ab","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6106":{"key":"96776c72c81485b996c7b9addba71d26ac912d8c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6110":{"key":"1dc1b84980e4acefcd1d60a0a4012355986dab93","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6114":{"key":"a1fa2e4ba7538c432fd9110019803407db451b6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6120":{"key":"5a3b9dfac04ca91a56591ddfc445605e16a61c9c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6124":{"key":"f0b0830c70cebf931e355c722ddd436e52bf91f4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6130":{"key":"e9b1afa3fc3eb4e62d5a6aec9530d08773c0a6f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6134":{"key":"caa3cd2221cb277641b6695388881d8aa43825eb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6140":{"key":"8ded007d83f9ce8b2c5da16c18c3cec9e850393c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6144":{"key":"4640195eec9d9958a9ce05789ec6e4550810777c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6150":{"key":"e52f48c262b2a63e4342dde9f4b8f22e434a2961","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6154":{"key":"298dd3cc85c38552508e17e38db024dfbb7d5255","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6160":{"key":"08556e3364df303b72cd184805fd18fee8529a84","name":"Style=Round","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6162":{"key":"79cbe7f411986ea5aa29a3f6702bfeeac5c1557b","name":"Style=Sharp","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6165":{"key":"8ff0104852702e93f2dd81eac341090f5441339d","name":"Style=Round","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6167":{"key":"979c099dc3b86b97cd01f1f2d7a977d710eb1875","name":"Style=Sharp","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6170":{"key":"957f3a92e6dece4be2bf64fc4eeb88a0bd0e5e00","name":"Style=Round","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6172":{"key":"170440769bd800e4894d46430123af76e0594dfc","name":"Style=Sharp","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6175":{"key":"5c928372ac6d9808e32379f209b6d6690915bbb4","name":"Style=Round","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6177":{"key":"612520a67e7b6c160f4a2f64a438da3a35a8a273","name":"Style=Sharp","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6180":{"key":"5774908f6384cb73f21f03cbfe59cd3a7874a0f7","name":"Style=Round","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6182":{"key":"beeb9f6220f972371c3a7ad41b2661c20b67145c","name":"Style=Sharp","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6185":{"key":"f0bf7fc4025470f7d91d1a82ac92d0d744945572","name":"Style=Round","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6187":{"key":"a3ce6cba7445feefe7defcf5451d33b7b7ebaf09","name":"Style=Sharp","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6190":{"key":"6f0216ab57cf60aee480b3a211f723528d79ae88","name":"Style=Round","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6192":{"key":"86dc3b01570c47e7af83aebe6be24c9a397f96b1","name":"Style=Sharp","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6195":{"key":"f4d21d3873d47df9108574b0764323abaa6fe83c","name":"Style=Round","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6197":{"key":"fe466a7fbf425d74b4abdcc5606200dc4cdbf9dd","name":"Style=Sharp","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6200":{"key":"c8f2dbbd221276ab3bdb7e51ba2743ef4bfd7a5b","name":"Style=Round","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"176:6202":{"key":"61d9fd60b692ce3aad31f5f1083c3e605f4139b0","name":"Style=Sharp","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"1327:6":{"key":"0f0e7dc02e7268c77ccc5e9718f021f06713c52e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:12":{"key":"2b0cea65a8d0e28751a2f962d66224163a5ed9a1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:19":{"key":"0061e3fa9a3f5470e4628dbfd0b4460c59587851","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:22":{"key":"7ea8575c5784de9be05ef21c614f8e6c0030626b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:26":{"key":"c7704502b362bf0152726d4832b102871d63ef9e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:29":{"key":"ed88a121b8ede3e4804fc340094d4d57cdd359bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:33":{"key":"9ce64b4ccef24fc875d74ecb7eecfbae337490f9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:36":{"key":"dc99700f1f79ed83ff9e6a70203ffd1c638131c0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:40":{"key":"77237359bf3a8da2ec2ef764437e47ecb4815468","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:43":{"key":"f6a051bb8553c047bd3a2cda914ee49d4326ecd0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:47":{"key":"d9d2c37877ae21a84125c9e3a178cb5b145d949a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:50":{"key":"429f6bd5c921801c0a6ecb0315d7953e398aaf5a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:54":{"key":"b324ec390eb5a41787bf67d830cfd2831a4cefbd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:57":{"key":"597f959f6bd5d19982b4344b5573495c35045bac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:61":{"key":"85740b02daecd9b1a08ea1e8f29152b7d3e63392","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:64":{"key":"34f34c46f15262f75910c29c0b1c0be2cb4c6aa0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:68":{"key":"6b1ef4c9faba2bcab03c9e1114eecaae4b9c1957","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:71":{"key":"95077b93c3c92a1702630acd2ca295a1655e4029","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:75":{"key":"b26cd9084dff17220ccc5a09cb13ea6cc96597d0","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:78":{"key":"24b8023761de933d69f10d10e81d60e644471b1e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:82":{"key":"ce304891d61579eb5615999ce44e8df956efee13","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:88":{"key":"8e8896d3f398a7b4be53049d71092fc8f6f38727","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:95":{"key":"9f84fcfc754fa576875a98ba1ae4f53fa4e31ad2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:98":{"key":"61dc45faff7128b9ce6f0091f153df193da924bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:102":{"key":"51a0272d21f1d5a11a001658b55526883f885c28","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:105":{"key":"95aed67eb01054ab6c2cd96f6438d6557dc8a97a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:109":{"key":"86c3a42cb68d1acec80953fbdcf93394609f87ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:112":{"key":"f3b25f5363184a9a300ca1a8f78868cf0c0e5302","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:116":{"key":"bac0585c4fb927a8334611a1e3b7bcdfa5a3afd5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:119":{"key":"fb403a287320d5d712d36b0ea35a0095cb949373","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:123":{"key":"a158bbd2fd6cd028dc97280cdbf5dd6f7387a0de","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:126":{"key":"79bf1b5ce655aca85d5027a1e96d51311f7f9803","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:130":{"key":"051ea9c166f0f6a3bf03dc8bed44c1fe9a2803a3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:133":{"key":"af558341da5f6db9bf914e362f162e48bf8ce4f8","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:137":{"key":"908342d12521432e9ff9eafb9629de793386e21e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:140":{"key":"13b8d755660739006e0e507511527439735020d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:144":{"key":"95113bcd9bb8261bd80155de5cc6c36010ba4a3f","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:147":{"key":"319500cb124b69190bdb6f6da20dec34ec832d93","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:151":{"key":"c85ab7eaa1b723f5b42bd22b7995bd958a1f5184","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:154":{"key":"e89d6d01dc32a1b7d491c7df42f1654bdd4b6a2e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:158":{"key":"58b73e5e5ff28850cb7cecd2a1336cc9047a9091","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:161":{"key":"c74d04f500a613a946628aead05605bda7ef2fd2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:165":{"key":"9b44d9837a707ee972cddb5b8123125bdf4260d9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:168":{"key":"1e62df1969e15c20266858e7cfe5f8383f2b1524","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:172":{"key":"ceedd9ac6b7d82003c3c8b77a6d99da2d126f417","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:175":{"key":"176395e7dd95e4d0316d1f6a834b391abc878a35","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:179":{"key":"4a43e9086c59fe320d3dc843ef23eac002bc2c7e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:182":{"key":"43d490ef297c95d9c80ea2122fe53b5fd5a1b8d7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:186":{"key":"4438aaf75d7ce81218e4af464876f6b52a165296","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:193":{"key":"6fc95bba49619c0c695caba464da5434f8ed2042","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:201":{"key":"5341e67ebb5cdafe1211ae8dedee6582d5856c8b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:206":{"key":"607977c8616bbb363c213789032f5e178ce1091c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:212":{"key":"0375fd3d38521df3a707ebf2fa8fa4a4c589a94a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:215":{"key":"9474ddcd6e0a3fdac32d2d9614a41542c9dfbcaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:219":{"key":"13ad547a82dfc6b30b711d53bad280e2acf10073","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:230":{"key":"76cbd876b0f7315e9b4e64138f7b6aaae0b3fa86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:242":{"key":"6ce9834a0b7d15acd7ae232c08090b993dde930a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:249":{"key":"27eb321f43f070c282179391dcb6d4324c50a8ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:257":{"key":"e0fc49a9ffff46e84725e33ef829ad079ddf85a5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:264":{"key":"2abf5520087ac30cd5fd5f42ffacb4267c124e9b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:272":{"key":"bee8122c135b13e4c87ca0470341052fce6275b8","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:278":{"key":"12526b4f2a41955955b803b1e2f65ec3cfc5de25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:285":{"key":"e187a8e4a690d1606bdbb43844a6528a5425d652","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:301":{"key":"d759c6e885a9046d47bfc0dc722e2b083e2c078e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:318":{"key":"ef8d87cb5759a7c895582a1e3338b31176a71efd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:328":{"key":"e4a8b33467f3dd732e099d0e695b5db0c3d61e39","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:339":{"key":"14fed9e74b66575a85010d233a674a12f929a20c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:342":{"key":"81089400a10437497ab0c87c6ac138b2147b8eaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:346":{"key":"2bb0a8a7fc17390c2d1e5fb43fcf1259e2ecc1e1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:361":{"key":"e0872ab1a7e0d22daddc6e8b3532d5a3de142cb4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:377":{"key":"76fc99c6cdce20a7b0a910f311705f18dabd15e3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:390":{"key":"e5408357086aee5017d45d55c7587aa988f99363","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:404":{"key":"aa77153bf5e5346416994786a162c059532d7770","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:407":{"key":"32e2e28bf56a1187a0c439a1b96697032feec0c4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:411":{"key":"67fce6862c43b46fc855f3a896bbc74790180d80","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:414":{"key":"b9f05b8c79b6febf4ff96e70682f0df5264e5ca9","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:418":{"key":"c7519c8b87ccbf74174842944f33577e9bac0223","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:421":{"key":"1356de1874a8c44d2815270b7fc63ae1b98208d4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:425":{"key":"9c491b069d1ce2b594eeefc128dbb1541382f494","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:434":{"key":"4b08b06c74fe62ffa5dd7327ecd25e91e3a961bf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:444":{"key":"b9930d31d6cee2b6df8e8b039b66fbf2335f6199","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:457":{"key":"deea26c7fb94e2d2d25f3b627e183406820db063","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:471":{"key":"0f192071dd451bc40f1092453f8141903bb65d12","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:500":{"key":"219976a48d34d3955c6928d9c77350013d79cfdc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:530":{"key":"20f8ee11203013ba077be20a2d63cc10e7891b20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:539":{"key":"5abda6a3b25a7c902d5a1f3eaeb72c18166398d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:549":{"key":"791de3476f9b4d682311c49562bf747d8c189ffd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:557":{"key":"f0f60491a63a8a8a618e4bd84ff62f23a5724df1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:566":{"key":"d2b85de4c4c4dc5465b4a3b31ccea305cd029646","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:569":{"key":"d6f01f781b9a922017bc8c11e8aaae2f5b2358fc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:573":{"key":"72d6c3444a753c3846b5ce34533c3f5a27503d3a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:584":{"key":"d41b28e8bffda9228157b7d7c4d39ac11d29d308","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:596":{"key":"da5b3296e266afea93cbaadc145cd8947b9d66a2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:604":{"key":"840482b48045eaa15fbfd8feb5060be27b1bbde3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:613":{"key":"9922d90ed14e6462db60597c720b1f3babe68e7c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:616":{"key":"c6f6213a6802979c664aa9bd723b761ae9dcba92","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:620":{"key":"357c3df4a79e217f70a68e22ae560f352105abb2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:623":{"key":"3f71dbf6ea4a6c1bc2d2914c75b1a75c6d9c140b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:627":{"key":"19819c98b80625f0ba4e237976a874c9dae06a63","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:630":{"key":"4810f6dd3200718aeccaa68b8d0acfbec1ca2781","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:634":{"key":"1cf3035ebb3ee275e6975474a013330555797150","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:637":{"key":"ab59dd5ee33f275664f935ff7ea7dbd0be60d7a3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:641":{"key":"ab9143fe7333951348f162b9c35c144a1daa25da","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:644":{"key":"cae04d1faaa7705b77929c584c0485811760665e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:648":{"key":"02ba884bef3d7986ca807855863880766a7dd2d2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:654":{"key":"8a678ddf87fab5b2bfd8ed36c731f646e68ba8c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:661":{"key":"a207aaae5c7d75f67ad36294f65376ecfb738a01","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:664":{"key":"d2a1f8b4329dc9b22a890f22e237f9c8ee4e0adc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:668":{"key":"7b5931ed96438edf78642ebe2be7219408bbd839","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:673":{"key":"0b70cc1666a85e76e06619c66dcce28f81e5c8fa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:679":{"key":"2cdc6858dea4722c518638eab675bff0e6c15955","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:682":{"key":"1554ca67b95538b38d3feea9ec9e8b76bc97b4ef","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:686":{"key":"2e2280f5853fc7ae9764504cec346ffce8842f5d","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:695":{"key":"e16cd6648b938b9d1d5fb8d9ae8314182c112b77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:705":{"key":"7c6142516f91d9bad2d851a5839cf19fed57fbdd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:717":{"key":"3501a7a21024d1238447efe55712bacdf84ceafe","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:730":{"key":"188139807ff9cefe5ff90fcfe5fb5a0e27d2af64","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:744":{"key":"177984534909a700d16230bb0626228705d834f7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:759":{"key":"97c55557aec8dbece6e0c19fe237df45bab9b95b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:762":{"key":"44d8975ea1a103a8a51be0886d1b4427052ce5e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:766":{"key":"dd6513386abe56e74a3030022be436788570fee7","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:773":{"key":"3acda269c230760cedc723358e4cec2c36610a07","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:781":{"key":"8921a2f4b86b832bd127befa6b5001a0c44dd9ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:788":{"key":"d58e7adbe0f1cf377bac28f2aa895015f0219d25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:796":{"key":"388a1e670a4ac9a4807f68050ae2d76d57b60ab6","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:807":{"key":"2598cccc6735f59231d029ab25a4e548ae8028c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:819":{"key":"a3f0199e32b5a2ce7a030d2088e581b9ec60b17a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:822":{"key":"a151d2e87cc30912423dfa4d3aac7a85a84b0a86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:826":{"key":"c336aae64f5f5a8c97bd6cedbc74c72ff959a3af","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:829":{"key":"ec05f92261d42ff982f4926dfc394b85a7b5a852","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:833":{"key":"fcac28d46cd047b248f8c0074439eecc73525a71","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:838":{"key":"437ba6dd5f3dca301624eb0c11563a6d999d2699","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:844":{"key":"f38a3df728914b54139e28eefe13f82853ead490","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:851":{"key":"ff82ad09567b524edad555cb9b1d2f22029f5008","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:859":{"key":"e66b5ea5931cca13e5caf3f2ed433303d8c6df20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]},"1327:862":{"key":"c509479ff10b320f3137abc7853f2e020bd35d66","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]}},"componentSets":{"176:5662":{"key":"cbf0fe6f1493d9acb5f9da092c1e092661ffd5f7","name":"Add","description":"Plus, add, create, request","documentationLinks":[]},"176:5669":{"key":"eb347d64ad1a0ffea96e92bdd1fedaf91f894ebd","name":"Sort","description":"sort, reorder","documentationLinks":[]},"176:5676":{"key":"476c816bb2731239ef0d55b8874ff6852fe61fe4","name":"Content","description":"duplicate, copy, clipboard, Workcloud, WC","documentationLinks":[]},"176:5683":{"key":"a95e9a1b11930e82830dad91c4dd8f8c68b5369f","name":"Copy File","description":"","documentationLinks":[]},"176:5690":{"key":"3f9d8dfa8742bc26fccc9c0f6e1e90276411c4ba","name":"Remove Circle Outline","description":"Minus","documentationLinks":[]},"176:5697":{"key":"867aaef00117348017898031f8567926c802182a","name":"Add Circle Outline","description":"Plus","documentationLinks":[]},"176:5704":{"key":"1e516e7cbd288bc2f95f595ba2b4c25c089ec41c","name":"Remove Circle","description":"Minus, Workcloud, WC","documentationLinks":[]},"176:5711":{"key":"c2702ac3e63ecb4a29e3ac97764d2fbc64c5b922","name":"Block","description":"unclaim, cancel, do not, DNE, Workcloud, WC","documentationLinks":[]},"176:5718":{"key":"9076c146080074c5e99fd1f74bacfd5c54d36ee4","name":"Add Circle","description":"Plus","documentationLinks":[]},"176:5725":{"key":"983869598a5a08e238eb714b7375b4fbfdfbf148","name":"Remove","description":"Minus, remove, delete, Workcloud, WC","documentationLinks":[]},"176:5732":{"key":"b1f3ec1029872f0654476023993c070271e4434b","name":"Android","description":"OS","documentationLinks":[]},"176:5739":{"key":"02da4b5d3d168fc03bf72db45388cfff88cf6d4e","name":"Add Box","description":"Plus","documentationLinks":[]},"176:5746":{"key":"690bf611d9ba8d6a78c3c28fbe395ac44cc57675","name":"Remove Box","description":"Minus","documentationLinks":[]},"176:5753":{"key":"51059388245bb98ddb4f1cd0f2fd6ccf3fa6d2d7","name":"Push Pin","description":"pin, save, pushpin, mark, Workcloud, WC","documentationLinks":[]},"176:5760":{"key":"9d7edf3a6280c9fcbf34dbe9f552cdd3927c0412","name":"Send","description":"chat, message, communication, send, Workcloud, WC","documentationLinks":[]},"176:5767":{"key":"d0ba0d4e165c398d30f062dd1301e2c74c91adb0","name":"Backspace","description":"Delete, clear, remove, backspace, Workcloud, WC","documentationLinks":[]},"176:5774":{"key":"60d55f7bcc8939fba1646e93729c59f0e3417de6","name":"Flag","description":"flag, mark, Workcloud, WC","documentationLinks":[]},"176:5781":{"key":"edb8e60d1699e7d0d2e585ba93ed6989b652c835","name":"Save","description":"file, save","documentationLinks":[]},"176:5788":{"key":"855361f282b8997f75f6f26328f83c3eeef01e19","name":"Reply","description":"email, e-mail, envelope, message, reply, Workcloud, WC","documentationLinks":[]},"176:5795":{"key":"180f33ff8f0dcb0869f75101dd7e80cb36fb5739","name":"Redo","description":"redo, edit, Workcloud, WC","documentationLinks":[]},"176:5802":{"key":"55662773af7f6b841859247ab6599299fae78711","name":"Save Alt","description":"save, file, import, download, Workcloud, WC","documentationLinks":[]},"176:5809":{"key":"fcd14ef19ee15d947517edb0a13103ec0e575473","name":"Undo","description":"undo, edit, Workcloud, WC","documentationLinks":[]},"176:5816":{"key":"5c50319a70cef03422ea05db2574746f63de85a7","name":"Chart Pie","description":"report, analytics, chart, pie chart, pie-chart, piechart","documentationLinks":[]},"176:5822":{"key":"ff7d1cffd91c319c4a4cac169c4f4e291eb66314","name":"Email","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC","documentationLinks":[]},"176:5829":{"key":"2e842858b83493b6bff43874f51a467ccd2ae494","name":"Email Outline","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline","documentationLinks":[]},"176:5839":{"key":"f78e6558254b20c3a7d50c0a97e0e8b592358d55","name":"Scanner","description":"mobile","documentationLinks":[]},"176:5846":{"key":"5a9c331842ee93f6db77cf3730faf89f08ffa38a","name":"Printer","description":"print, printer, Workcloud, WC","documentationLinks":[]},"176:5853":{"key":"45364c041b3552011021e4aa4f94d4187382517d","name":"Cast","description":"Chrome","documentationLinks":[]},"176:5860":{"key":"c8d5aaa229a78646e816b04773c35117548d5a7e","name":"Cast Connected","description":"Chrome","documentationLinks":[]},"176:5867":{"key":"f364c6a6f68b48d6d03751bd316c8d62416273e5","name":"Desktop","description":"","documentationLinks":[]},"176:5874":{"key":"e1ae05ebc3b0eac945d2c64120de2dcdfb9c6185","name":"Devices Ecosystem","description":"","documentationLinks":[]},"176:5881":{"key":"7c7cfed104befae2ebdd932e4363cffe3733fdb9","name":"Device Settings","description":"","documentationLinks":[]},"176:5888":{"key":"1332d478aa097d9cb591848a1d2843ef2aed7421","name":"Headphones","description":"","documentationLinks":[]},"176:5895":{"key":"a7fd94e6b6f733e7eba00867ede1eadc8033acb9","name":"Keyboard","description":"keyboard, keypad, type, Workcloud, WC","documentationLinks":[]},"176:5902":{"key":"a7f3246b66215ea043b14e9530156c584cd65769","name":"Laptop","description":"Computer","documentationLinks":[]},"176:5909":{"key":"43688d3cefa72f2bc3237769d805bb1796044d93","name":"Memory","description":"Processor, Microprocessor","documentationLinks":[]},"176:5916":{"key":"a4c37dcc364c03c81b32b25191e6672ab1e2e6aa","name":"Monitor","description":"","documentationLinks":[]},"176:5923":{"key":"adc6052bc2b202f0437bcebd72a04926c80a8998","name":"Phone Android","description":"Mobile","documentationLinks":[]},"176:5930":{"key":"d33d761829524c20a1f6a6cc4e88a432dfe1f8cd","name":"Phone iPhone","description":"Mobile","documentationLinks":[]},"176:5937":{"key":"3266c82724c4f5cd69e1a861a6fa35e4b98841da","name":"Phonelink","description":"Connected","documentationLinks":[]},"176:5944":{"key":"03ba6ba94a31a4760796d8a35b229657969ed49d","name":"Security","description":"Protect, Protection, Shield","documentationLinks":[]},"176:5951":{"key":"4ffc9025404ffc8a3ef4c8e733f4d0fdbe3e4993","name":"Video Play","description":"","documentationLinks":[]},"176:5958":{"key":"8fee21bd48fef3f5536867ca0b483c5a52b445c3","name":"Smart Phone","description":"Mobile, phone, device, Workcloud, WC","documentationLinks":[]},"176:5965":{"key":"c3f5d07881ea9a4374491a1f1ec67cb7b104e558","name":"Speaker","description":"","documentationLinks":[]},"176:5972":{"key":"5b459d11e075ecf4bc663615c10f4a09e9cbaac0","name":"Tablet","description":"","documentationLinks":[]},"176:5979":{"key":"8dbef44fe722c85f87ed4aa2438446721a456065","name":"Tablet Mac","description":"iPad","documentationLinks":[]},"176:5986":{"key":"0c3278693479899a7c014cdff625a66b878bb920","name":"TV","description":"Television","documentationLinks":[]},"176:5993":{"key":"dd2fcb897604a454798081a77cb1a6693c6e5e60","name":"Watch","description":"Smartwatch","documentationLinks":[]},"176:6003":{"key":"026e47ecab4b5822d7a006cc0c34e2253425906f","name":"Finished Download","description":"Complete, Success, Done","documentationLinks":[]},"176:6010":{"key":"0975725ec5b32c1783247274f5197886d54fe2ab","name":"Downloading","description":"","documentationLinks":[]},"176:6017":{"key":"0c3d47e0b99b8a2d6a721011e5de86c98a3b3f13","name":"Cloud","description":"","documentationLinks":[]},"176:6024":{"key":"fa65f0dd571b1981d1ef36b1a0d92669928e856e","name":"Cloud Done","description":"Check, Check Mark, Mark","documentationLinks":[]},"176:6031":{"key":"bce46f0cde2d3029a213b4a083fe9424e3d5d652","name":"Cloud Download","description":"file, download, cloud, Workcloud, WC","documentationLinks":[]},"176:6038":{"key":"8cde2e1a8cdc8505bf98f68886e009b77d70dcab","name":"Cloud Outline","description":"","documentationLinks":[]},"176:6045":{"key":"1f9b23077a5cca2527be6b0e877b42b536318cef","name":"Cloud Upload","description":"file, upload, cloud, Workcloud, WC","documentationLinks":[]},"176:6052":{"key":"06e4af58fefc9796299155aa1d75bd36d75d72d0","name":"Cloud Off","description":"Offline","documentationLinks":[]},"176:6059":{"key":"41426d9912a342b838f7f3133c2e3a2eb49907a1","name":"Folder","description":"folder, Workcloud, WC","documentationLinks":[]},"176:6066":{"key":"0e855bdc2b0f8b1b76fd4f71195fa890b4f0abf8","name":"Create New Folder","description":"Add","documentationLinks":[]},"176:6073":{"key":"64511c4804a8a1ce6c515e2536961ce82ffdf562","name":"Folder Outline","description":"","documentationLinks":[]},"176:6080":{"key":"373f5fbab000865af43afc1eb53126927b9159ac","name":"Shared Folder","description":"Network, Access","documentationLinks":[]},"176:6087":{"key":"34353c2325dbbbc0d04e0776d55c57b96ba4f95e","name":"Grid View","description":"2x2","documentationLinks":[]},"176:6102":{"key":"898dce0f408dc79374d2796db8a66612408dfa2a","name":"Upload File","description":"","documentationLinks":[]},"176:6109":{"key":"b418ad93c74479f4abc83564943b693bfc108ade","name":"JPG Attach","description":"Type, File","documentationLinks":[]},"176:6119":{"key":"c1a90a0fc4209dd1ab8061fd92fef86a92f5be60","name":"PDF Attach","description":"Type, File","documentationLinks":[]},"176:6129":{"key":"c2cbc52a8984b918c5a105fc448f6cb8720653c3","name":"PNG Attach","description":"Type, File","documentationLinks":[]},"176:6139":{"key":"57338bc2a0b2839d80bc7c208a8e26055e98e479","name":"DOC Attach","description":"Type, File","documentationLinks":[]},"176:6149":{"key":"5ff5900c067b902dca74d5512cf2ec864ac16ca0","name":"PPT Attach","description":"Type, File","documentationLinks":[]},"176:6159":{"key":"d72a937dd7196d0162f7076aefced9f1536156e1","name":"Open New Off","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","documentationLinks":[]},"176:6164":{"key":"041a9e7f1ef241f385fff07aebfceaa97af1e93c","name":"Page Height","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6169":{"key":"ce53fdaf4694e4166c3a590e3144f5653d856624","name":"Page Width","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6174":{"key":"cf3a6a774cb9923b9976a4fea13f9fca8207652c","name":"Page Rotate","description":"Workcloud, WC, page rotate","documentationLinks":[]},"176:6179":{"key":"83ec664a107d1ac5360053807b6fc096ce84bff9","name":"Save","description":"Workcloud, WC, file, save","documentationLinks":[]},"176:6184":{"key":"51a6d9b8dcab30b3c3b1eb6e7605cda1dbc5205f","name":"Publish","description":"Workcloud, WC, file, publish","documentationLinks":[]},"176:6189":{"key":"e1e8cb0dd03cb7e59c4612d300e6dfdb4027f336","name":"File","description":"Workcloud, WC, file, note, paper","documentationLinks":[]},"176:6194":{"key":"9fc690ca5dc618d555d5ddda770e80ff005413dd","name":"Folder","description":"Workcloud, WC, project, folder, file","documentationLinks":[]},"176:6199":{"key":"fc7c807aecaf8e4ac414bda29cfec7a075ff6b33","name":"Maintenance","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","documentationLinks":[]},"1327:5":{"key":"fa74d772647bf4646618db5f5c3a1625d8070e14","name":"Life Guard","description":"Android","documentationLinks":[]},"1327:18":{"key":"7a9402271b9decfd5801a2639e9aca2cbfa252a1","name":"Mobility DNA","description":"","documentationLinks":[]},"1327:25":{"key":"cf1ae2a65281a6c0bccde0f117e0ad0839c86b2a","name":"TekSpeech Pro","description":"","documentationLinks":[]},"1327:32":{"key":"3459fffb48a486ea6a8c88acb530e9664538492a","name":"Enterprise Browser","description":"","documentationLinks":[]},"1327:39":{"key":"59fe9624af4661995fd21e528f5b4648b01146dc","name":"AppGallery","description":"Store","documentationLinks":[]},"1327:46":{"key":"27db2f0b9d39f7a51228101aa39556e8ba1ca7a7","name":"Workforce Connect","description":"WFC","documentationLinks":[]},"1327:53":{"key":"1171a60346cc1cc50a0e0bbd77e5fb1efbf66480","name":"SimulScan","description":"Signature","documentationLinks":[]},"1327:60":{"key":"81a24a04fa4a7f8c3ce4fb3f468e538a2a8c5af7","name":"Power Precision","description":"","documentationLinks":[]},"1327:67":{"key":"74d69f9036a58a631e3bf51ac020a1659331cdfe","name":"Power Precision +","description":"","documentationLinks":[]},"1327:74":{"key":"3fe69a0892bb641d3bb1c569b9c56f49f956c9ce","name":"Mobility Security","description":"","documentationLinks":[]},"1327:81":{"key":"24c0c7e84c3e5e0a9436b11f83869e8fb70bde2e","name":"StageNow","description":"","documentationLinks":[]},"1327:94":{"key":"ad3d6d802a7bc376fe7e4d2532750ce9fad2a888","name":"EMDK","description":"Toolbox","documentationLinks":[]},"1327:101":{"key":"fb744205c2bdf134b11377fac9e5fd0a0b07e543","name":"Enterprise Keyboard","description":"Setting","documentationLinks":[]},"1327:108":{"key":"90343edb43abc6c5142f6aee76bab35fd481d9a2","name":"MDM Toolkit","description":"","documentationLinks":[]},"1327:115":{"key":"02fa7e2ad504a72e11acec2aa2ad6341ab6c6330","name":"MX","description":"Mobility, Extensions","documentationLinks":[]},"1327:122":{"key":"a1ddca9e8af3f07d0af31d1b00b3ac4f021634ad","name":"RX","description":"Prescription","documentationLinks":[]},"1327:129":{"key":"a76a36e5bd7ba2d4a1668f08f35aab7d4436e160","name":"Setting Tool","description":"","documentationLinks":[]},"1327:136":{"key":"28d3f3d08802d32fb731e8034a5709857c1ba2c8","name":"Data Wedge","description":"","documentationLinks":[]},"1327:143":{"key":"dc8b8caef21c37879e6306a5458e3ca2963551c3","name":"Application Analytics","description":"","documentationLinks":[]},"1327:150":{"key":"1caf5d165efc3f7fb2ad7fa474ca4f24005e8a4c","name":"Swipe Assist","description":"","documentationLinks":[]},"1327:157":{"key":"064bd32633184eff705cd71f6edcc44f749fd972","name":"SmartDEX","description":"","documentationLinks":[]},"1327:164":{"key":"610e7daa0dbaa6eaa48f9dff0a89e0ae68567951","name":"Direct Connect","description":"","documentationLinks":[]},"1327:171":{"key":"6bd0ca2156087395a163934f50d09d50572bc25d","name":"Remote Control","description":"","documentationLinks":[]},"1327:178":{"key":"a8d43f8e262ada8ca60de953048f3bb08d6b7141","name":"Asset Tracker Lite","description":"","documentationLinks":[]},"1327:185":{"key":"c17737032ddbd06cec19ff34ada2f0a9ed63cf4d","name":"Voice Wedge","description":"","documentationLinks":[]},"1327:200":{"key":"11148f7c3482c0b2aa5d643389c04dfb337ae8ff","name":"Device Tracker","description":"","documentationLinks":[]},"1327:211":{"key":"fe317fda46a45fd752f3b525dcab6e80b47d9548","name":"WorryFree Wi-Fi","description":"","documentationLinks":[]},"1327:218":{"key":"737e6fa2fdfea23be063a19dcd0079cea879adbd","name":"Workstation Connect","description":"","documentationLinks":[]},"1327:241":{"key":"d6824832dd615e9a10cddcaf28b6a4c0dc6cbd60","name":"OEM Config","description":"","documentationLinks":[]},"1327:256":{"key":"1ac009970d754b3c737a53b6996879b083571ca2","name":"GMS Restricted Mode","description":"","documentationLinks":[]},"1327:271":{"key":"85842a1d05987316ec2a91199ab4ecd8c6746836","name":"Zero Touch","description":"","documentationLinks":[]},"1327:284":{"key":"d567c8b1b0cd0183c57e8afcf4b86158c5978005","name":"Smart TEK","description":"","documentationLinks":[]},"1327:317":{"key":"5b0018b335d85a73c564e03c3631c725d66d7f72","name":"OCR","description":"","documentationLinks":[]},"1327:338":{"key":"0939ae271428c3c19ecce31d8b158dda18d4e51b","name":"Smart TE","description":"","documentationLinks":[]},"1327:345":{"key":"73280896599d0125f3df190f7966d2561a0d0937","name":"Smart TE Lite","description":"","documentationLinks":[]},"1327:376":{"key":"c5dcb75e6cc0ccc1d2c5b3aca2ee81e532b4b970","name":"PRZM","description":"","documentationLinks":[]},"1327:403":{"key":"fdfc455f2955e2f4381ac792c59137289556cac2","name":"Multi Code Data Formatting","description":"","documentationLinks":[]},"1327:410":{"key":"9e09e39195a0b64458e2e91e61b15bd4c5a26278","name":"Remote Management","description":"","documentationLinks":[]},"1327:417":{"key":"3c7d3578a5900a50d9429a7c77a400c2d77a5d6f","name":"Preferred Symbol","description":"","documentationLinks":[]},"1327:424":{"key":"eb6f998106dc88eb8337031c815ab49f87db8f9e","name":"Wi-Fi Friendly Mode","description":"Bluetooth","documentationLinks":[]},"1327:443":{"key":"99f6e0c14701a750e74740a2827e03145d4ffce8","name":"Intelligent Document Capture","description":"","documentationLinks":[]},"1327:470":{"key":"b8f863f07cd1ba6ae16e0610022f3399f36daa52","name":"123Scan","description":"","documentationLinks":[]},"1327:529":{"key":"e8af8d378864c0da3586e579c4c7f3d5c0b6dcd6","name":"Scan To Connect","description":"","documentationLinks":[]},"1327:548":{"key":"b0e47b062dc3af80596f33682be6c7751e4c86aa","name":"Scanner Control Application","description":"","documentationLinks":[]},"1327:565":{"key":"d1f3555489cce24b0ebed9e7201eea601959e7fd","name":"Scan Speed Analytics","description":"","documentationLinks":[]},"1327:572":{"key":"ec8650e006f7dc37ff1e993ce27e93d7ad0023f4","name":"Remote Diagnostics","description":"","documentationLinks":[]},"1327:595":{"key":"7bcea349614d95637e66fddbcaf06b4e28d82a6c","name":"123 RFID","description":"","documentationLinks":[]},"1327:612":{"key":"fc84bd6800a2ce27e57a1c543db823a2373f7b2c","name":"Blood Bag Plus","description":"","documentationLinks":[]},"1327:619":{"key":"d361b920472b59a6c5aaccc635355bef6590fa59","name":"Label Plus","description":"","documentationLinks":[]},"1327:626":{"key":"9cc37a9080b52964bb289b494bf5aac21acc0263","name":"Virtual Tether","description":"","documentationLinks":[]},"1327:633":{"key":"57ec1170fb3193fc25828ea6c7e47277435eb973","name":"Link OS","description":"","documentationLinks":[]},"1327:640":{"key":"4223ad6dd6923de5e67b24653752704ce193fc67","name":"MDM Connectors","description":"","documentationLinks":[]},"1327:647":{"key":"898f55a1df23b3fcc4c14ddd528f330187f8e4d8","name":"Browser Print","description":"","documentationLinks":[]},"1327:660":{"key":"d1abf0f98ee9e45be644b4c06b4e136510835fd9","name":"Cloud Connect","description":"","documentationLinks":[]},"1327:667":{"key":"c060801462bcd862d679571dd5f92e2522f92b6e","name":"Virtual Devices","description":"","documentationLinks":[]},"1327:678":{"key":"9861ffb6d1475b8ff328535ef5a0930073101c66","name":"Enterprise Connectors","description":"","documentationLinks":[]},"1327:685":{"key":"ede69463bd0f227ce2017e9ce7b9437f239b09af","name":"Pairing Solutions","description":"","documentationLinks":[]},"1327:704":{"key":"7a8278746ace27d38a01520a4c99b85dc3f3f1a3","name":"Scan And Pair","description":"","documentationLinks":[]},"1327:729":{"key":"cb269e1ea9c076ae3250e6f73d0853a623046e0b","name":"Zebra Designer","description":"","documentationLinks":[]},"1327:758":{"key":"4eab2fd93528b3de22f4df8b0138a3cfb9a1febe","name":"PDF Direct","description":"Print","documentationLinks":[]},"1327:765":{"key":"a211c9d29afa6fa7a7e5cf0fa31b6efd81009513","name":"Print Station","description":"","documentationLinks":[]},"1327:780":{"key":"f45c8eba47d910cd95254fedda7736162f62ac56","name":"Printer Profile Manager","description":"","documentationLinks":[]},"1327:795":{"key":"6753cb421dd07c37c426c963ac7871720e3b59d5","name":"Zebra Setup Utility","description":"","documentationLinks":[]},"1327:818":{"key":"a137efbd957879ecc966c1dc0a8697dd0a4e6f33","name":"Bluetooth Management","description":"","documentationLinks":[]},"1327:825":{"key":"a555f9fb40298e035c402ccae06df3aa14c57433","name":"Zebra OneCare","description":"","documentationLinks":[]},"1327:832":{"key":"9d26c7dbda99cae2466479d2d917dc2f6db1f338","name":"Visibility Services","description":"","documentationLinks":[]},"1327:843":{"key":"992562e87360944835a797ca34c253cc7a203c59","name":"Print Secure","description":"","documentationLinks":[]},"1327:858":{"key":"bce454710c9baf25cac336be25a63caed030a5cf","name":"Design Tools","description":"","documentationLinks":[]}},"schemaVersion":0,"styles":{"1:2":{"key":"e4fa20f35d2c34a96a908621be4749c83c9aafcb","name":"Light Mode/Text/Default","styleType":"FILL","remote":true,"description":"Use:\nPrimary text for content, Enabled text"},"1:3":{"key":"8d192dd816c3d2df612048194a289aef1b69fa8d","name":"Standard/Large Display/Heading 5","styleType":"TEXT","remote":true,"description":""},"1:4":{"key":"bbb824378ad20239be10695b3664fabc0c149627","name":"Light Mode/Border/Default","styleType":"FILL","remote":true,"description":""},"1:5":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""},"176:625":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""}},"name":"IconsTestPage","lastModified":"2024-05-08T12:25:23Z","thumbnailUrl":"https://s3-alpha.figma.com/thumbnails/f1891b26-cbbc-4a9a-a7b1-2fd74ab7609a?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWCVDFANMME%2F20240801%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240801T000000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=7e5b767ef7c6f7c6077bfc95a603c4edb01d3f875fb63ba546ee576660aa7426","version":"6025593135","role":"owner","editorType":"figma","linkAccess":"inherit"} \ No newline at end of file +{"document":{"id":"0:0","name":"Document","type":"DOCUMENT","scrollBehavior":"SCROLLS","children":[{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"},"exportSettings":[]}]},"components":{"176:5663":{"key":"bf07221265357cac7113413da91bbd25e4d95bc2","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5666":{"key":"37e5859e9888b39c556dbbc7f534cd22d33fccf1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5662","documentationLinks":[]},"176:5670":{"key":"4a646b8f23f9fa19ce5776d8b844eff4e3998a92","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5673":{"key":"f3e38a1df3d2a0dd143c59369802031b01f5eba4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5669","documentationLinks":[]},"176:5677":{"key":"be0cce59ad61d9da24dd68feeccb95b91d2b8e6f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5680":{"key":"69b6781d64a23e01377d64661a213d688088fb77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5676","documentationLinks":[]},"176:5684":{"key":"3952dee885bfac2fd916497e3499f36ee497930a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5687":{"key":"0bf1042906eff5c0a8e372f3498aec15dc62e2f2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5683","documentationLinks":[]},"176:5691":{"key":"f0c83ab82052eae1c32899d1969cf1340c2171cb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5694":{"key":"02883f3e322c0f34d266bbcf40717628783471ae","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5690","documentationLinks":[]},"176:5698":{"key":"77c8ba1775d2e118e15850b9714609583a961f50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5701":{"key":"54b26c0d79e51f0042d9655d6674a3680da76a24","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5697","documentationLinks":[]},"176:5705":{"key":"60997624acf02a8ca29b468419571610900bb7a4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5708":{"key":"595c3dc44f8f763f0220a727a0d00ad52994366e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5704","documentationLinks":[]},"176:5712":{"key":"996c8bc6987d808784ffa85766c9043862c36ac0","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5715":{"key":"a24c37ae2b697cd2564920f6f3bd9ef0bfe9b942","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5711","documentationLinks":[]},"176:5719":{"key":"6884aa47b070b5c5b107e85663b09832ca47105b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5722":{"key":"f7634a6fee0c33d8cdcf9184b8350ff10bf5670a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5718","documentationLinks":[]},"176:5726":{"key":"0ddf6d8c4dcf36fe6d3908fc129aede965b9a182","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5729":{"key":"b70fd7183395df9e3c690821b319a97a5d54c72f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5725","documentationLinks":[]},"176:5733":{"key":"659dfb67d970c19aca03864f26fb56d8c3614c50","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5736":{"key":"8927c066336eb7d109bc4a355491e3909be59538","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5732","documentationLinks":[]},"176:5740":{"key":"f8ad66e31add1e1fd3b51a00eb8df963e8f64cca","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5743":{"key":"f2f07d0efd39e8626b83b50f05eb220945110245","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5739","documentationLinks":[]},"176:5747":{"key":"3cbec281a7ea74297c79a1e5654c39f60249c515","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5750":{"key":"e9c063d498b06612d16f8e6200baa5153d1fd2ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5746","documentationLinks":[]},"176:5754":{"key":"08ef5c3b37b0b9867e5221cb3bb74ea24f68fd14","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5757":{"key":"f4b93f51e74eb1bf89b6aaccda161e643d162191","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5753","documentationLinks":[]},"176:5761":{"key":"57076834105d23117f790bb0559015ea5e4dbad4","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5764":{"key":"eb41de7d6bdfe8c176af1869b44bf336ec439585","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5760","documentationLinks":[]},"176:5768":{"key":"348a9cfc5fcb788c0256a61b0413bfaf8a715977","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5771":{"key":"849b66c2bac8b3a6feb7aff32efca3711e692859","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5767","documentationLinks":[]},"176:5775":{"key":"e27dbf6aa03bfa1ce82645524479d87c547b5a05","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5778":{"key":"cc2168eee3309e11de97d001f05e8db6ccddfb27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5774","documentationLinks":[]},"176:5782":{"key":"ac0ac344b675c0f1c6803cd2379463b94f652ccb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5785":{"key":"b9b43465c2c93e41cffbe2e928ae22f6b5e378e3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5781","documentationLinks":[]},"176:5789":{"key":"c900d0bebfe7d7c1bf5933c3d75089755d5cb859","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5792":{"key":"01a0dda94fbb581616e60c6cd1ccbd5a331ded4d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5788","documentationLinks":[]},"176:5796":{"key":"cdbf5d03b1101c8c26c6e49c3c2370c20d71802e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5799":{"key":"f56a9820bac433ed44240d76877698953d9f3eb1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5795","documentationLinks":[]},"176:5803":{"key":"adc4222edf1df2950da08914b0ea636b9b0b1d66","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5806":{"key":"48d290d322a29078e3cb7313e244314ed32fafaf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5802","documentationLinks":[]},"176:5810":{"key":"e3a5efe9cf12b2a379b2886d9ffff25cbe243b33","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5813":{"key":"386d2acab0cb44238277235f5f1bd5c3093426b2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5809","documentationLinks":[]},"176:5817":{"key":"847a511f71f74f216e7910ec1a63ac78f569ba96","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5820":{"key":"f4eb7d7393f7af13ba16d3c2d3c5a629441cdd8c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5816","documentationLinks":[]},"176:5823":{"key":"2fc2428ecea6351cd8e9269bbb43b9762daa66f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5826":{"key":"d3d8ecdc0def6e4ca5dc701e1788d01b2f0a5c91","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5822","documentationLinks":[]},"176:5830":{"key":"18f43d394e408f315a1d502ebb65e2dea27dffd3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5833":{"key":"4efe6ddc1b783f4ca6161469240a210c05c7e10f","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5829","documentationLinks":[]},"176:5840":{"key":"e9d7c323d2d837d94910f68aec2e56c066fc47fd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5843":{"key":"54711c8e12c32737a18b548b80f20b94ba708607","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5839","documentationLinks":[]},"176:5847":{"key":"d8dd1f3930bfaf9425be0e501d038ae66046dfb8","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5850":{"key":"42aa642f7c2f3a7903ff076d36240bca5db9de98","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5846","documentationLinks":[]},"176:5854":{"key":"0cc7f775e92adde871437f4b81d8c68688b53702","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5857":{"key":"07989df1f92af1e0e147066fd7ddac6d582d0bb3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5853","documentationLinks":[]},"176:5861":{"key":"916206df87e6f70b973fea7a3f9fcb2c5491dad9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5864":{"key":"a105571c260477118a0f0c9f727288841fbb32bb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5860","documentationLinks":[]},"176:5868":{"key":"6cccfb368983c72ede6785ec138071acfb6c97eb","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5871":{"key":"63c72fd84c779b8d29d8475e94e47276278cb523","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5867","documentationLinks":[]},"176:5875":{"key":"eaba07600e4beef86751e88e0a3c4b53ee50cc7c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5878":{"key":"dbd1057145fb2a59b90b81cd86ba9b9a891529ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5874","documentationLinks":[]},"176:5882":{"key":"aaa0087de590789b9f486a5117bf368f820e4291","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5885":{"key":"fa47d408c041af780e4ee7a52747ab1c41057ec4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5881","documentationLinks":[]},"176:5889":{"key":"0babdeb7b21008b3b5227ffbc416147f6411100d","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5892":{"key":"a12895b5a67a78094488bc90cbc9ff73935bd077","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5888","documentationLinks":[]},"176:5896":{"key":"0802346a0e1fa83d92b29e4202640bae1a61aefe","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5899":{"key":"7eb2f613c6d7389578e744a096f2b70f5940e0ba","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5895","documentationLinks":[]},"176:5903":{"key":"411be0eecc5edb1ca96ded0749fb8092d7b39c1b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5906":{"key":"d7e2f78efc1264b8e9603b25fcfd127fbdf52a37","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5902","documentationLinks":[]},"176:5910":{"key":"bc46dfdc0798b03910006f2732a10bc7a7e1f846","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5913":{"key":"e83518f4a565b0c91141584e9f48aeef1f8d1405","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5909","documentationLinks":[]},"176:5917":{"key":"65565a6977788de124cb3dde5a5ab0f305f829cd","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5920":{"key":"ae9515ebabbd4ed30a791f835f983cdfce944103","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5916","documentationLinks":[]},"176:5924":{"key":"8a29e18a2820c1b4052f4e7c62a45b141f052a17","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5927":{"key":"9beafe1cb5e2ad6b7bb87a2dcf116ddc8d945d9d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5923","documentationLinks":[]},"176:5931":{"key":"1e2ee945d34bd0035d8f41e77dd9d11d7f665218","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5934":{"key":"160d4d8a22a21e8a133d3dbe149763a1710771d0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5930","documentationLinks":[]},"176:5938":{"key":"3ddeaad64e4b9c5063530fa888c527173f264d64","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5941":{"key":"25d125abc83ec4f3a687dd4e13288bbc42930eac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5937","documentationLinks":[]},"176:5945":{"key":"5cebfaba3ff2ad32fe256c013ffba76dbc16b644","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5948":{"key":"4f87d9d0942a1aee0e0946f0a599cb5a6ede7ebd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5944","documentationLinks":[]},"176:5952":{"key":"78f772de4a49a7b8baee7621da07e585f9161d84","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5955":{"key":"05bc86a7f0707e01d51355b8e9bb7efddd827b38","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5951","documentationLinks":[]},"176:5959":{"key":"e4e7fce8f9c1f1aa97dc4ee54a6b790e8d336168","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5962":{"key":"b773978e5bce9706e860e3fb6e7f89d8e27c9b27","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5958","documentationLinks":[]},"176:5966":{"key":"76db925902b809aec5dad526484395a18fb99056","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5969":{"key":"89374a5f040547803c6748fd6e7b8f9f1f675740","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5965","documentationLinks":[]},"176:5973":{"key":"8d68b45d8f65454e84d6e0f3b2e5ab22118d592a","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5976":{"key":"5c1d60744d9ef2e82735d994a965400985d25878","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5972","documentationLinks":[]},"176:5980":{"key":"92eedb872b641f501efc3b6572643d8ca6d4a11e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5983":{"key":"5a9950a29738b452f77fbcfd83afe702dfe8699d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5979","documentationLinks":[]},"176:5987":{"key":"cf0575e016968fe4915434161a4dbc8c7cf2bd98","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5990":{"key":"1147fa004ecf89d13aab043b8490ac348ecac70e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5986","documentationLinks":[]},"176:5994":{"key":"b483ac6adc7f9971674150edae5b4071dda9ae3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:5997":{"key":"4cac12143ac9e59da5b1033310ac76bc1230db41","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:5993","documentationLinks":[]},"176:6004":{"key":"9f0378cb51ad545073c9b88eae292171c561d57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6007":{"key":"ae5a0876455e8ec8c2a41b192bcad7da2d14104d","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6003","documentationLinks":[]},"176:6011":{"key":"b4565597e50d6e64e14e55004b593aa0901544d3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6014":{"key":"4a15edc63cb18824feee420a3c6cab6a9acb963c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6010","documentationLinks":[]},"176:6018":{"key":"f6b3a4b3bd316bc6111dff8096367f49baf0d1d9","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6021":{"key":"6d2c421dc391ae8b9eab5085be4c5f30cce8812e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6017","documentationLinks":[]},"176:6025":{"key":"8c08fdb2256ff992d2776111401a1a88b2314109","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6028":{"key":"3bb4e381e85c91fdfbcbc1da071a6040d841e848","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6024","documentationLinks":[]},"176:6032":{"key":"910d4f7eb94b5534c606d021a51bafe1f3308792","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6035":{"key":"945311097cb31ef8ca275786d86db279f5944a6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6031","documentationLinks":[]},"176:6039":{"key":"7db1385a963851e89701212a782dcca6cd8b1885","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6042":{"key":"4710c41f9083affda7b87f988fd0f84887c9ede1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6038","documentationLinks":[]},"176:6046":{"key":"083d91dc6de5a63039bae193486b0404f24cb57e","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6049":{"key":"45b80e55b38dc4364cf36f7194453a967665a56e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6045","documentationLinks":[]},"176:6053":{"key":"4d299add71dae9e9964f73ad7753b9eac785d290","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6056":{"key":"093b243bccfa75c83cef6d0b67e6e7e8d63af1e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6052","documentationLinks":[]},"176:6060":{"key":"d03aae79496f1fa76e74ea63369c8649a6416868","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6063":{"key":"7774acd9e42ac8751c010bf8db27d9551d5c2167","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6059","documentationLinks":[]},"176:6067":{"key":"82e2fd349789dd04b199b1e03343c4a4bc617b3f","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6070":{"key":"101f0f03631afe594c32a5d99a4626e3775260c5","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6066","documentationLinks":[]},"176:6074":{"key":"cfc0c72e92f7b1c49917b14592adbdbe10b6f47b","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6077":{"key":"aabf57a51ca1a3675944a9f3678c5ca80e9121cf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6073","documentationLinks":[]},"176:6081":{"key":"c1e6250fef0fc4366c92baffe53d5e1e22301816","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6084":{"key":"9100589d92788174c7737011f68db98fd8fad5db","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6080","documentationLinks":[]},"176:6088":{"key":"4a02ec293d168f56be27ae43e34a708bbbffe769","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6095":{"key":"ef1ee26872759d9734f712c94c45085b802a1dd1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6087","documentationLinks":[]},"176:6103":{"key":"2d9445fab18e9efcea509fb71db1f6d15ed595ab","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6106":{"key":"96776c72c81485b996c7b9addba71d26ac912d8c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6102","documentationLinks":[]},"176:6110":{"key":"1dc1b84980e4acefcd1d60a0a4012355986dab93","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6114":{"key":"a1fa2e4ba7538c432fd9110019803407db451b6b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6109","documentationLinks":[]},"176:6120":{"key":"5a3b9dfac04ca91a56591ddfc445605e16a61c9c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6124":{"key":"f0b0830c70cebf931e355c722ddd436e52bf91f4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6119","documentationLinks":[]},"176:6130":{"key":"e9b1afa3fc3eb4e62d5a6aec9530d08773c0a6f3","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6134":{"key":"caa3cd2221cb277641b6695388881d8aa43825eb","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6129","documentationLinks":[]},"176:6140":{"key":"8ded007d83f9ce8b2c5da16c18c3cec9e850393c","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6144":{"key":"4640195eec9d9958a9ce05789ec6e4550810777c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6139","documentationLinks":[]},"176:6150":{"key":"e52f48c262b2a63e4342dde9f4b8f22e434a2961","name":"Style=Round","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6154":{"key":"298dd3cc85c38552508e17e38db024dfbb7d5255","name":"Style=Sharp","description":"","remote":false,"componentSetId":"176:6149","documentationLinks":[]},"176:6160":{"key":"08556e3364df303b72cd184805fd18fee8529a84","name":"Style=Round","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6162":{"key":"79cbe7f411986ea5aa29a3f6702bfeeac5c1557b","name":"Style=Sharp","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","remote":false,"componentSetId":"176:6159","documentationLinks":[]},"176:6165":{"key":"8ff0104852702e93f2dd81eac341090f5441339d","name":"Style=Round","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6167":{"key":"979c099dc3b86b97cd01f1f2d7a977d710eb1875","name":"Style=Sharp","description":"Workcloud, WC, page height","remote":false,"componentSetId":"176:6164","documentationLinks":[]},"176:6170":{"key":"957f3a92e6dece4be2bf64fc4eeb88a0bd0e5e00","name":"Style=Round","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6172":{"key":"170440769bd800e4894d46430123af76e0594dfc","name":"Style=Sharp","description":"Workcloud, WC, page width","remote":false,"componentSetId":"176:6169","documentationLinks":[]},"176:6175":{"key":"5c928372ac6d9808e32379f209b6d6690915bbb4","name":"Style=Round","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6177":{"key":"612520a67e7b6c160f4a2f64a438da3a35a8a273","name":"Style=Sharp","description":"Workcloud, WC, page rotate","remote":false,"componentSetId":"176:6174","documentationLinks":[]},"176:6180":{"key":"5774908f6384cb73f21f03cbfe59cd3a7874a0f7","name":"Style=Round","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6182":{"key":"beeb9f6220f972371c3a7ad41b2661c20b67145c","name":"Style=Sharp","description":"Workcloud, WC, file, save","remote":false,"componentSetId":"176:6179","documentationLinks":[]},"176:6185":{"key":"f0bf7fc4025470f7d91d1a82ac92d0d744945572","name":"Style=Round","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6187":{"key":"a3ce6cba7445feefe7defcf5451d33b7b7ebaf09","name":"Style=Sharp","description":"Workcloud, WC, file, publish","remote":false,"componentSetId":"176:6184","documentationLinks":[]},"176:6190":{"key":"6f0216ab57cf60aee480b3a211f723528d79ae88","name":"Style=Round","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6192":{"key":"86dc3b01570c47e7af83aebe6be24c9a397f96b1","name":"Style=Sharp","description":"Workcloud, WC, file, note, paper","remote":false,"componentSetId":"176:6189","documentationLinks":[]},"176:6195":{"key":"f4d21d3873d47df9108574b0764323abaa6fe83c","name":"Style=Round","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6197":{"key":"fe466a7fbf425d74b4abdcc5606200dc4cdbf9dd","name":"Style=Sharp","description":"Workcloud, WC, project, folder, file","remote":false,"componentSetId":"176:6194","documentationLinks":[]},"176:6200":{"key":"c8f2dbbd221276ab3bdb7e51ba2743ef4bfd7a5b","name":"Style=Round","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"176:6202":{"key":"61d9fd60b692ce3aad31f5f1083c3e605f4139b0","name":"Style=Sharp","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","remote":false,"componentSetId":"176:6199","documentationLinks":[]},"1327:6":{"key":"0f0e7dc02e7268c77ccc5e9718f021f06713c52e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:12":{"key":"2b0cea65a8d0e28751a2f962d66224163a5ed9a1","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:5","documentationLinks":[]},"1327:19":{"key":"0061e3fa9a3f5470e4628dbfd0b4460c59587851","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:22":{"key":"7ea8575c5784de9be05ef21c614f8e6c0030626b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:18","documentationLinks":[]},"1327:26":{"key":"c7704502b362bf0152726d4832b102871d63ef9e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:29":{"key":"ed88a121b8ede3e4804fc340094d4d57cdd359bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:25","documentationLinks":[]},"1327:33":{"key":"9ce64b4ccef24fc875d74ecb7eecfbae337490f9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:36":{"key":"dc99700f1f79ed83ff9e6a70203ffd1c638131c0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:32","documentationLinks":[]},"1327:40":{"key":"77237359bf3a8da2ec2ef764437e47ecb4815468","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:43":{"key":"f6a051bb8553c047bd3a2cda914ee49d4326ecd0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:39","documentationLinks":[]},"1327:47":{"key":"d9d2c37877ae21a84125c9e3a178cb5b145d949a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:50":{"key":"429f6bd5c921801c0a6ecb0315d7953e398aaf5a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:46","documentationLinks":[]},"1327:54":{"key":"b324ec390eb5a41787bf67d830cfd2831a4cefbd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:57":{"key":"597f959f6bd5d19982b4344b5573495c35045bac","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:53","documentationLinks":[]},"1327:61":{"key":"85740b02daecd9b1a08ea1e8f29152b7d3e63392","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:64":{"key":"34f34c46f15262f75910c29c0b1c0be2cb4c6aa0","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:60","documentationLinks":[]},"1327:68":{"key":"6b1ef4c9faba2bcab03c9e1114eecaae4b9c1957","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:71":{"key":"95077b93c3c92a1702630acd2ca295a1655e4029","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:67","documentationLinks":[]},"1327:75":{"key":"b26cd9084dff17220ccc5a09cb13ea6cc96597d0","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:78":{"key":"24b8023761de933d69f10d10e81d60e644471b1e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:74","documentationLinks":[]},"1327:82":{"key":"ce304891d61579eb5615999ce44e8df956efee13","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:88":{"key":"8e8896d3f398a7b4be53049d71092fc8f6f38727","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:81","documentationLinks":[]},"1327:95":{"key":"9f84fcfc754fa576875a98ba1ae4f53fa4e31ad2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:98":{"key":"61dc45faff7128b9ce6f0091f153df193da924bd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:94","documentationLinks":[]},"1327:102":{"key":"51a0272d21f1d5a11a001658b55526883f885c28","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:105":{"key":"95aed67eb01054ab6c2cd96f6438d6557dc8a97a","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:101","documentationLinks":[]},"1327:109":{"key":"86c3a42cb68d1acec80953fbdcf93394609f87ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:112":{"key":"f3b25f5363184a9a300ca1a8f78868cf0c0e5302","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:108","documentationLinks":[]},"1327:116":{"key":"bac0585c4fb927a8334611a1e3b7bcdfa5a3afd5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:119":{"key":"fb403a287320d5d712d36b0ea35a0095cb949373","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:115","documentationLinks":[]},"1327:123":{"key":"a158bbd2fd6cd028dc97280cdbf5dd6f7387a0de","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:126":{"key":"79bf1b5ce655aca85d5027a1e96d51311f7f9803","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:122","documentationLinks":[]},"1327:130":{"key":"051ea9c166f0f6a3bf03dc8bed44c1fe9a2803a3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:133":{"key":"af558341da5f6db9bf914e362f162e48bf8ce4f8","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:129","documentationLinks":[]},"1327:137":{"key":"908342d12521432e9ff9eafb9629de793386e21e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:140":{"key":"13b8d755660739006e0e507511527439735020d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:136","documentationLinks":[]},"1327:144":{"key":"95113bcd9bb8261bd80155de5cc6c36010ba4a3f","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:147":{"key":"319500cb124b69190bdb6f6da20dec34ec832d93","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:143","documentationLinks":[]},"1327:151":{"key":"c85ab7eaa1b723f5b42bd22b7995bd958a1f5184","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:154":{"key":"e89d6d01dc32a1b7d491c7df42f1654bdd4b6a2e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:150","documentationLinks":[]},"1327:158":{"key":"58b73e5e5ff28850cb7cecd2a1336cc9047a9091","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:161":{"key":"c74d04f500a613a946628aead05605bda7ef2fd2","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:157","documentationLinks":[]},"1327:165":{"key":"9b44d9837a707ee972cddb5b8123125bdf4260d9","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:168":{"key":"1e62df1969e15c20266858e7cfe5f8383f2b1524","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:164","documentationLinks":[]},"1327:172":{"key":"ceedd9ac6b7d82003c3c8b77a6d99da2d126f417","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:175":{"key":"176395e7dd95e4d0316d1f6a834b391abc878a35","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:171","documentationLinks":[]},"1327:179":{"key":"4a43e9086c59fe320d3dc843ef23eac002bc2c7e","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:182":{"key":"43d490ef297c95d9c80ea2122fe53b5fd5a1b8d7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:178","documentationLinks":[]},"1327:186":{"key":"4438aaf75d7ce81218e4af464876f6b52a165296","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:193":{"key":"6fc95bba49619c0c695caba464da5434f8ed2042","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:185","documentationLinks":[]},"1327:201":{"key":"5341e67ebb5cdafe1211ae8dedee6582d5856c8b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:206":{"key":"607977c8616bbb363c213789032f5e178ce1091c","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:200","documentationLinks":[]},"1327:212":{"key":"0375fd3d38521df3a707ebf2fa8fa4a4c589a94a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:215":{"key":"9474ddcd6e0a3fdac32d2d9614a41542c9dfbcaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:211","documentationLinks":[]},"1327:219":{"key":"13ad547a82dfc6b30b711d53bad280e2acf10073","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:230":{"key":"76cbd876b0f7315e9b4e64138f7b6aaae0b3fa86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:218","documentationLinks":[]},"1327:242":{"key":"6ce9834a0b7d15acd7ae232c08090b993dde930a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:249":{"key":"27eb321f43f070c282179391dcb6d4324c50a8ce","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:241","documentationLinks":[]},"1327:257":{"key":"e0fc49a9ffff46e84725e33ef829ad079ddf85a5","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:264":{"key":"2abf5520087ac30cd5fd5f42ffacb4267c124e9b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:256","documentationLinks":[]},"1327:272":{"key":"bee8122c135b13e4c87ca0470341052fce6275b8","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:278":{"key":"12526b4f2a41955955b803b1e2f65ec3cfc5de25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:271","documentationLinks":[]},"1327:285":{"key":"e187a8e4a690d1606bdbb43844a6528a5425d652","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:301":{"key":"d759c6e885a9046d47bfc0dc722e2b083e2c078e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:284","documentationLinks":[]},"1327:318":{"key":"ef8d87cb5759a7c895582a1e3338b31176a71efd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:328":{"key":"e4a8b33467f3dd732e099d0e695b5db0c3d61e39","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:317","documentationLinks":[]},"1327:339":{"key":"14fed9e74b66575a85010d233a674a12f929a20c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:342":{"key":"81089400a10437497ab0c87c6ac138b2147b8eaa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:338","documentationLinks":[]},"1327:346":{"key":"2bb0a8a7fc17390c2d1e5fb43fcf1259e2ecc1e1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:361":{"key":"e0872ab1a7e0d22daddc6e8b3532d5a3de142cb4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:345","documentationLinks":[]},"1327:377":{"key":"76fc99c6cdce20a7b0a910f311705f18dabd15e3","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:390":{"key":"e5408357086aee5017d45d55c7587aa988f99363","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:376","documentationLinks":[]},"1327:404":{"key":"aa77153bf5e5346416994786a162c059532d7770","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:407":{"key":"32e2e28bf56a1187a0c439a1b96697032feec0c4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:403","documentationLinks":[]},"1327:411":{"key":"67fce6862c43b46fc855f3a896bbc74790180d80","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:414":{"key":"b9f05b8c79b6febf4ff96e70682f0df5264e5ca9","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:410","documentationLinks":[]},"1327:418":{"key":"c7519c8b87ccbf74174842944f33577e9bac0223","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:421":{"key":"1356de1874a8c44d2815270b7fc63ae1b98208d4","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:417","documentationLinks":[]},"1327:425":{"key":"9c491b069d1ce2b594eeefc128dbb1541382f494","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:434":{"key":"4b08b06c74fe62ffa5dd7327ecd25e91e3a961bf","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:424","documentationLinks":[]},"1327:444":{"key":"b9930d31d6cee2b6df8e8b039b66fbf2335f6199","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:457":{"key":"deea26c7fb94e2d2d25f3b627e183406820db063","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:443","documentationLinks":[]},"1327:471":{"key":"0f192071dd451bc40f1092453f8141903bb65d12","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:500":{"key":"219976a48d34d3955c6928d9c77350013d79cfdc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:470","documentationLinks":[]},"1327:530":{"key":"20f8ee11203013ba077be20a2d63cc10e7891b20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:539":{"key":"5abda6a3b25a7c902d5a1f3eaeb72c18166398d3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:529","documentationLinks":[]},"1327:549":{"key":"791de3476f9b4d682311c49562bf747d8c189ffd","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:557":{"key":"f0f60491a63a8a8a618e4bd84ff62f23a5724df1","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:548","documentationLinks":[]},"1327:566":{"key":"d2b85de4c4c4dc5465b4a3b31ccea305cd029646","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:569":{"key":"d6f01f781b9a922017bc8c11e8aaae2f5b2358fc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:565","documentationLinks":[]},"1327:573":{"key":"72d6c3444a753c3846b5ce34533c3f5a27503d3a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:584":{"key":"d41b28e8bffda9228157b7d7c4d39ac11d29d308","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:572","documentationLinks":[]},"1327:596":{"key":"da5b3296e266afea93cbaadc145cd8947b9d66a2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:604":{"key":"840482b48045eaa15fbfd8feb5060be27b1bbde3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:595","documentationLinks":[]},"1327:613":{"key":"9922d90ed14e6462db60597c720b1f3babe68e7c","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:616":{"key":"c6f6213a6802979c664aa9bd723b761ae9dcba92","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:612","documentationLinks":[]},"1327:620":{"key":"357c3df4a79e217f70a68e22ae560f352105abb2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:623":{"key":"3f71dbf6ea4a6c1bc2d2914c75b1a75c6d9c140b","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:619","documentationLinks":[]},"1327:627":{"key":"19819c98b80625f0ba4e237976a874c9dae06a63","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:630":{"key":"4810f6dd3200718aeccaa68b8d0acfbec1ca2781","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:626","documentationLinks":[]},"1327:634":{"key":"1cf3035ebb3ee275e6975474a013330555797150","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:637":{"key":"ab59dd5ee33f275664f935ff7ea7dbd0be60d7a3","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:633","documentationLinks":[]},"1327:641":{"key":"ab9143fe7333951348f162b9c35c144a1daa25da","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:644":{"key":"cae04d1faaa7705b77929c584c0485811760665e","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:640","documentationLinks":[]},"1327:648":{"key":"02ba884bef3d7986ca807855863880766a7dd2d2","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:654":{"key":"8a678ddf87fab5b2bfd8ed36c731f646e68ba8c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:647","documentationLinks":[]},"1327:661":{"key":"a207aaae5c7d75f67ad36294f65376ecfb738a01","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:664":{"key":"d2a1f8b4329dc9b22a890f22e237f9c8ee4e0adc","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:660","documentationLinks":[]},"1327:668":{"key":"7b5931ed96438edf78642ebe2be7219408bbd839","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:673":{"key":"0b70cc1666a85e76e06619c66dcce28f81e5c8fa","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:667","documentationLinks":[]},"1327:679":{"key":"2cdc6858dea4722c518638eab675bff0e6c15955","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:682":{"key":"1554ca67b95538b38d3feea9ec9e8b76bc97b4ef","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:678","documentationLinks":[]},"1327:686":{"key":"2e2280f5853fc7ae9764504cec346ffce8842f5d","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:695":{"key":"e16cd6648b938b9d1d5fb8d9ae8314182c112b77","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:685","documentationLinks":[]},"1327:705":{"key":"7c6142516f91d9bad2d851a5839cf19fed57fbdd","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:717":{"key":"3501a7a21024d1238447efe55712bacdf84ceafe","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:704","documentationLinks":[]},"1327:730":{"key":"188139807ff9cefe5ff90fcfe5fb5a0e27d2af64","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:744":{"key":"177984534909a700d16230bb0626228705d834f7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:729","documentationLinks":[]},"1327:759":{"key":"97c55557aec8dbece6e0c19fe237df45bab9b95b","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:762":{"key":"44d8975ea1a103a8a51be0886d1b4427052ce5e6","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:758","documentationLinks":[]},"1327:766":{"key":"dd6513386abe56e74a3030022be436788570fee7","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:773":{"key":"3acda269c230760cedc723358e4cec2c36610a07","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:765","documentationLinks":[]},"1327:781":{"key":"8921a2f4b86b832bd127befa6b5001a0c44dd9ca","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:788":{"key":"d58e7adbe0f1cf377bac28f2aa895015f0219d25","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:780","documentationLinks":[]},"1327:796":{"key":"388a1e670a4ac9a4807f68050ae2d76d57b60ab6","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:807":{"key":"2598cccc6735f59231d029ab25a4e548ae8028c7","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:795","documentationLinks":[]},"1327:819":{"key":"a3f0199e32b5a2ce7a030d2088e581b9ec60b17a","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:822":{"key":"a151d2e87cc30912423dfa4d3aac7a85a84b0a86","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:818","documentationLinks":[]},"1327:826":{"key":"c336aae64f5f5a8c97bd6cedbc74c72ff959a3af","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:829":{"key":"ec05f92261d42ff982f4926dfc394b85a7b5a852","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:825","documentationLinks":[]},"1327:833":{"key":"fcac28d46cd047b248f8c0074439eecc73525a71","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:838":{"key":"437ba6dd5f3dca301624eb0c11563a6d999d2699","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:832","documentationLinks":[]},"1327:844":{"key":"f38a3df728914b54139e28eefe13f82853ead490","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:851":{"key":"ff82ad09567b524edad555cb9b1d2f22029f5008","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:843","documentationLinks":[]},"1327:859":{"key":"e66b5ea5931cca13e5caf3f2ed433303d8c6df20","name":"Style=Round","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]},"1327:862":{"key":"c509479ff10b320f3137abc7853f2e020bd35d66","name":"Style=Sharp","description":"","remote":false,"componentSetId":"1327:858","documentationLinks":[]}},"componentSets":{"176:5662":{"key":"cbf0fe6f1493d9acb5f9da092c1e092661ffd5f7","name":"Add","description":"Plus, add, create, request","documentationLinks":[]},"176:5669":{"key":"eb347d64ad1a0ffea96e92bdd1fedaf91f894ebd","name":"Sort","description":"sort, reorder","documentationLinks":[]},"176:5676":{"key":"476c816bb2731239ef0d55b8874ff6852fe61fe4","name":"Content","description":"duplicate, copy, clipboard, Workcloud, WC","documentationLinks":[]},"176:5683":{"key":"a95e9a1b11930e82830dad91c4dd8f8c68b5369f","name":"Copy File","description":"","documentationLinks":[]},"176:5690":{"key":"3f9d8dfa8742bc26fccc9c0f6e1e90276411c4ba","name":"Remove Circle Outline","description":"Minus","documentationLinks":[]},"176:5697":{"key":"867aaef00117348017898031f8567926c802182a","name":"Add Circle Outline","description":"Plus","documentationLinks":[]},"176:5704":{"key":"1e516e7cbd288bc2f95f595ba2b4c25c089ec41c","name":"Remove Circle","description":"Minus, Workcloud, WC","documentationLinks":[]},"176:5711":{"key":"c2702ac3e63ecb4a29e3ac97764d2fbc64c5b922","name":"Block","description":"unclaim, cancel, do not, DNE, Workcloud, WC","documentationLinks":[]},"176:5718":{"key":"9076c146080074c5e99fd1f74bacfd5c54d36ee4","name":"Add Circle","description":"Plus","documentationLinks":[]},"176:5725":{"key":"983869598a5a08e238eb714b7375b4fbfdfbf148","name":"Remove","description":"Minus, remove, delete, Workcloud, WC","documentationLinks":[]},"176:5732":{"key":"b1f3ec1029872f0654476023993c070271e4434b","name":"Android","description":"OS","documentationLinks":[]},"176:5739":{"key":"02da4b5d3d168fc03bf72db45388cfff88cf6d4e","name":"Add Box","description":"Plus","documentationLinks":[]},"176:5746":{"key":"690bf611d9ba8d6a78c3c28fbe395ac44cc57675","name":"Remove Box","description":"Minus","documentationLinks":[]},"176:5753":{"key":"51059388245bb98ddb4f1cd0f2fd6ccf3fa6d2d7","name":"Push Pin","description":"pin, save, pushpin, mark, Workcloud, WC","documentationLinks":[]},"176:5760":{"key":"9d7edf3a6280c9fcbf34dbe9f552cdd3927c0412","name":"Send","description":"chat, message, communication, send, Workcloud, WC","documentationLinks":[]},"176:5767":{"key":"d0ba0d4e165c398d30f062dd1301e2c74c91adb0","name":"Backspace","description":"Delete, clear, remove, backspace, Workcloud, WC","documentationLinks":[]},"176:5774":{"key":"60d55f7bcc8939fba1646e93729c59f0e3417de6","name":"Flag","description":"flag, mark, Workcloud, WC","documentationLinks":[]},"176:5781":{"key":"edb8e60d1699e7d0d2e585ba93ed6989b652c835","name":"Save","description":"file, save","documentationLinks":[]},"176:5788":{"key":"855361f282b8997f75f6f26328f83c3eeef01e19","name":"Reply","description":"email, e-mail, envelope, message, reply, Workcloud, WC","documentationLinks":[]},"176:5795":{"key":"180f33ff8f0dcb0869f75101dd7e80cb36fb5739","name":"Redo","description":"redo, edit, Workcloud, WC","documentationLinks":[]},"176:5802":{"key":"55662773af7f6b841859247ab6599299fae78711","name":"Save Alt","description":"save, file, import, download, Workcloud, WC","documentationLinks":[]},"176:5809":{"key":"fcd14ef19ee15d947517edb0a13103ec0e575473","name":"Undo","description":"undo, edit, Workcloud, WC","documentationLinks":[]},"176:5816":{"key":"5c50319a70cef03422ea05db2574746f63de85a7","name":"Chart Pie","description":"report, analytics, chart, pie chart, pie-chart, piechart","documentationLinks":[]},"176:5822":{"key":"ff7d1cffd91c319c4a4cac169c4f4e291eb66314","name":"Email","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC","documentationLinks":[]},"176:5829":{"key":"2e842858b83493b6bff43874f51a467ccd2ae494","name":"Email Outline","description":"Mail, @, email, e-mail, envelope, message, Workcloud, WC, outline","documentationLinks":[]},"176:5839":{"key":"f78e6558254b20c3a7d50c0a97e0e8b592358d55","name":"Scanner","description":"mobile","documentationLinks":[]},"176:5846":{"key":"5a9c331842ee93f6db77cf3730faf89f08ffa38a","name":"Printer","description":"print, printer, Workcloud, WC","documentationLinks":[]},"176:5853":{"key":"45364c041b3552011021e4aa4f94d4187382517d","name":"Cast","description":"Chrome","documentationLinks":[]},"176:5860":{"key":"c8d5aaa229a78646e816b04773c35117548d5a7e","name":"Cast Connected","description":"Chrome","documentationLinks":[]},"176:5867":{"key":"f364c6a6f68b48d6d03751bd316c8d62416273e5","name":"Desktop","description":"","documentationLinks":[]},"176:5874":{"key":"e1ae05ebc3b0eac945d2c64120de2dcdfb9c6185","name":"Devices Ecosystem","description":"","documentationLinks":[]},"176:5881":{"key":"7c7cfed104befae2ebdd932e4363cffe3733fdb9","name":"Device Settings","description":"","documentationLinks":[]},"176:5888":{"key":"1332d478aa097d9cb591848a1d2843ef2aed7421","name":"Headphones","description":"","documentationLinks":[]},"176:5895":{"key":"a7fd94e6b6f733e7eba00867ede1eadc8033acb9","name":"Keyboard","description":"keyboard, keypad, type, Workcloud, WC","documentationLinks":[]},"176:5902":{"key":"a7f3246b66215ea043b14e9530156c584cd65769","name":"Laptop","description":"Computer","documentationLinks":[]},"176:5909":{"key":"43688d3cefa72f2bc3237769d805bb1796044d93","name":"Memory","description":"Processor, Microprocessor","documentationLinks":[]},"176:5916":{"key":"a4c37dcc364c03c81b32b25191e6672ab1e2e6aa","name":"Monitor","description":"","documentationLinks":[]},"176:5923":{"key":"adc6052bc2b202f0437bcebd72a04926c80a8998","name":"Phone Android","description":"Mobile","documentationLinks":[]},"176:5930":{"key":"d33d761829524c20a1f6a6cc4e88a432dfe1f8cd","name":"Phone iPhone","description":"Mobile","documentationLinks":[]},"176:5937":{"key":"3266c82724c4f5cd69e1a861a6fa35e4b98841da","name":"Phonelink","description":"Connected","documentationLinks":[]},"176:5944":{"key":"03ba6ba94a31a4760796d8a35b229657969ed49d","name":"Security","description":"Protect, Protection, Shield","documentationLinks":[]},"176:5951":{"key":"4ffc9025404ffc8a3ef4c8e733f4d0fdbe3e4993","name":"Video Play","description":"","documentationLinks":[]},"176:5958":{"key":"8fee21bd48fef3f5536867ca0b483c5a52b445c3","name":"Smart Phone","description":"Mobile, phone, device, Workcloud, WC","documentationLinks":[]},"176:5965":{"key":"c3f5d07881ea9a4374491a1f1ec67cb7b104e558","name":"Speaker","description":"","documentationLinks":[]},"176:5972":{"key":"5b459d11e075ecf4bc663615c10f4a09e9cbaac0","name":"Tablet","description":"","documentationLinks":[]},"176:5979":{"key":"8dbef44fe722c85f87ed4aa2438446721a456065","name":"Tablet Mac","description":"iPad","documentationLinks":[]},"176:5986":{"key":"0c3278693479899a7c014cdff625a66b878bb920","name":"TV","description":"Television","documentationLinks":[]},"176:5993":{"key":"dd2fcb897604a454798081a77cb1a6693c6e5e60","name":"Watch","description":"Smartwatch","documentationLinks":[]},"176:6003":{"key":"026e47ecab4b5822d7a006cc0c34e2253425906f","name":"Finished Download","description":"Complete, Success, Done","documentationLinks":[]},"176:6010":{"key":"0975725ec5b32c1783247274f5197886d54fe2ab","name":"Downloading","description":"","documentationLinks":[]},"176:6017":{"key":"0c3d47e0b99b8a2d6a721011e5de86c98a3b3f13","name":"Cloud","description":"","documentationLinks":[]},"176:6024":{"key":"fa65f0dd571b1981d1ef36b1a0d92669928e856e","name":"Cloud Done","description":"Check, Check Mark, Mark","documentationLinks":[]},"176:6031":{"key":"bce46f0cde2d3029a213b4a083fe9424e3d5d652","name":"Cloud Download","description":"file, download, cloud, Workcloud, WC","documentationLinks":[]},"176:6038":{"key":"8cde2e1a8cdc8505bf98f68886e009b77d70dcab","name":"Cloud Outline","description":"","documentationLinks":[]},"176:6045":{"key":"1f9b23077a5cca2527be6b0e877b42b536318cef","name":"Cloud Upload","description":"file, upload, cloud, Workcloud, WC","documentationLinks":[]},"176:6052":{"key":"06e4af58fefc9796299155aa1d75bd36d75d72d0","name":"Cloud Off","description":"Offline","documentationLinks":[]},"176:6059":{"key":"41426d9912a342b838f7f3133c2e3a2eb49907a1","name":"Folder","description":"folder, Workcloud, WC","documentationLinks":[]},"176:6066":{"key":"0e855bdc2b0f8b1b76fd4f71195fa890b4f0abf8","name":"Create New Folder","description":"Add","documentationLinks":[]},"176:6073":{"key":"64511c4804a8a1ce6c515e2536961ce82ffdf562","name":"Folder Outline","description":"","documentationLinks":[]},"176:6080":{"key":"373f5fbab000865af43afc1eb53126927b9159ac","name":"Shared Folder","description":"Network, Access","documentationLinks":[]},"176:6087":{"key":"34353c2325dbbbc0d04e0776d55c57b96ba4f95e","name":"Grid View","description":"2x2","documentationLinks":[]},"176:6102":{"key":"898dce0f408dc79374d2796db8a66612408dfa2a","name":"Upload File","description":"","documentationLinks":[]},"176:6109":{"key":"b418ad93c74479f4abc83564943b693bfc108ade","name":"JPG Attach","description":"Type, File","documentationLinks":[]},"176:6119":{"key":"c1a90a0fc4209dd1ab8061fd92fef86a92f5be60","name":"PDF Attach","description":"Type, File","documentationLinks":[]},"176:6129":{"key":"c2cbc52a8984b918c5a105fc448f6cb8720653c3","name":"PNG Attach","description":"Type, File","documentationLinks":[]},"176:6139":{"key":"57338bc2a0b2839d80bc7c208a8e26055e98e479","name":"DOC Attach","description":"Type, File","documentationLinks":[]},"176:6149":{"key":"5ff5900c067b902dca74d5512cf2ec864ac16ca0","name":"PPT Attach","description":"Type, File","documentationLinks":[]},"176:6159":{"key":"d72a937dd7196d0162f7076aefced9f1536156e1","name":"Open New Off","description":"Workcloud, WC, file, do not export, export, open in new, open, launch","documentationLinks":[]},"176:6164":{"key":"041a9e7f1ef241f385fff07aebfceaa97af1e93c","name":"Page Height","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6169":{"key":"ce53fdaf4694e4166c3a590e3144f5653d856624","name":"Page Width","description":"Workcloud, WC, page height","documentationLinks":[]},"176:6174":{"key":"cf3a6a774cb9923b9976a4fea13f9fca8207652c","name":"Page Rotate","description":"Workcloud, WC, page rotate","documentationLinks":[]},"176:6179":{"key":"83ec664a107d1ac5360053807b6fc096ce84bff9","name":"Save","description":"Workcloud, WC, file, save","documentationLinks":[]},"176:6184":{"key":"51a6d9b8dcab30b3c3b1eb6e7605cda1dbc5205f","name":"Publish","description":"Workcloud, WC, file, publish","documentationLinks":[]},"176:6189":{"key":"e1e8cb0dd03cb7e59c4612d300e6dfdb4027f336","name":"File","description":"Workcloud, WC, file, note, paper","documentationLinks":[]},"176:6194":{"key":"9fc690ca5dc618d555d5ddda770e80ff005413dd","name":"Folder","description":"Workcloud, WC, project, folder, file","documentationLinks":[]},"176:6199":{"key":"fc7c807aecaf8e4ac414bda29cfec7a075ff6b33","name":"Maintenance","description":"Workcloud, WC, maintenance, repair, hammer, wrench, tools","documentationLinks":[]},"1327:5":{"key":"fa74d772647bf4646618db5f5c3a1625d8070e14","name":"Life Guard","description":"Android","documentationLinks":[]},"1327:18":{"key":"7a9402271b9decfd5801a2639e9aca2cbfa252a1","name":"Mobility DNA","description":"","documentationLinks":[]},"1327:25":{"key":"cf1ae2a65281a6c0bccde0f117e0ad0839c86b2a","name":"TekSpeech Pro","description":"","documentationLinks":[]},"1327:32":{"key":"3459fffb48a486ea6a8c88acb530e9664538492a","name":"Enterprise Browser","description":"","documentationLinks":[]},"1327:39":{"key":"59fe9624af4661995fd21e528f5b4648b01146dc","name":"AppGallery","description":"Store","documentationLinks":[]},"1327:46":{"key":"27db2f0b9d39f7a51228101aa39556e8ba1ca7a7","name":"Workforce Connect","description":"WFC","documentationLinks":[]},"1327:53":{"key":"1171a60346cc1cc50a0e0bbd77e5fb1efbf66480","name":"SimulScan","description":"Signature","documentationLinks":[]},"1327:60":{"key":"81a24a04fa4a7f8c3ce4fb3f468e538a2a8c5af7","name":"Power Precision","description":"","documentationLinks":[]},"1327:67":{"key":"74d69f9036a58a631e3bf51ac020a1659331cdfe","name":"Power Precision +","description":"","documentationLinks":[]},"1327:74":{"key":"3fe69a0892bb641d3bb1c569b9c56f49f956c9ce","name":"Mobility Security","description":"","documentationLinks":[]},"1327:81":{"key":"24c0c7e84c3e5e0a9436b11f83869e8fb70bde2e","name":"StageNow","description":"","documentationLinks":[]},"1327:94":{"key":"ad3d6d802a7bc376fe7e4d2532750ce9fad2a888","name":"EMDK","description":"Toolbox","documentationLinks":[]},"1327:101":{"key":"fb744205c2bdf134b11377fac9e5fd0a0b07e543","name":"Enterprise Keyboard","description":"Setting","documentationLinks":[]},"1327:108":{"key":"90343edb43abc6c5142f6aee76bab35fd481d9a2","name":"MDM Toolkit","description":"","documentationLinks":[]},"1327:115":{"key":"02fa7e2ad504a72e11acec2aa2ad6341ab6c6330","name":"MX","description":"Mobility, Extensions","documentationLinks":[]},"1327:122":{"key":"a1ddca9e8af3f07d0af31d1b00b3ac4f021634ad","name":"RX","description":"Prescription","documentationLinks":[]},"1327:129":{"key":"a76a36e5bd7ba2d4a1668f08f35aab7d4436e160","name":"Setting Tool","description":"","documentationLinks":[]},"1327:136":{"key":"28d3f3d08802d32fb731e8034a5709857c1ba2c8","name":"Data Wedge","description":"","documentationLinks":[]},"1327:143":{"key":"dc8b8caef21c37879e6306a5458e3ca2963551c3","name":"Application Analytics","description":"","documentationLinks":[]},"1327:150":{"key":"1caf5d165efc3f7fb2ad7fa474ca4f24005e8a4c","name":"Swipe Assist","description":"","documentationLinks":[]},"1327:157":{"key":"064bd32633184eff705cd71f6edcc44f749fd972","name":"SmartDEX","description":"","documentationLinks":[]},"1327:164":{"key":"610e7daa0dbaa6eaa48f9dff0a89e0ae68567951","name":"Direct Connect","description":"","documentationLinks":[]},"1327:171":{"key":"6bd0ca2156087395a163934f50d09d50572bc25d","name":"Remote Control","description":"","documentationLinks":[]},"1327:178":{"key":"a8d43f8e262ada8ca60de953048f3bb08d6b7141","name":"Asset Tracker Lite","description":"","documentationLinks":[]},"1327:185":{"key":"c17737032ddbd06cec19ff34ada2f0a9ed63cf4d","name":"Voice Wedge","description":"","documentationLinks":[]},"1327:200":{"key":"11148f7c3482c0b2aa5d643389c04dfb337ae8ff","name":"Device Tracker","description":"","documentationLinks":[]},"1327:211":{"key":"fe317fda46a45fd752f3b525dcab6e80b47d9548","name":"WorryFree Wi-Fi","description":"","documentationLinks":[]},"1327:218":{"key":"737e6fa2fdfea23be063a19dcd0079cea879adbd","name":"Workstation Connect","description":"","documentationLinks":[]},"1327:241":{"key":"d6824832dd615e9a10cddcaf28b6a4c0dc6cbd60","name":"OEM Config","description":"","documentationLinks":[]},"1327:256":{"key":"1ac009970d754b3c737a53b6996879b083571ca2","name":"GMS Restricted Mode","description":"","documentationLinks":[]},"1327:271":{"key":"85842a1d05987316ec2a91199ab4ecd8c6746836","name":"Zero Touch","description":"","documentationLinks":[]},"1327:284":{"key":"d567c8b1b0cd0183c57e8afcf4b86158c5978005","name":"Smart TEK","description":"","documentationLinks":[]},"1327:317":{"key":"5b0018b335d85a73c564e03c3631c725d66d7f72","name":"OCR","description":"","documentationLinks":[]},"1327:338":{"key":"0939ae271428c3c19ecce31d8b158dda18d4e51b","name":"Smart TE","description":"","documentationLinks":[]},"1327:345":{"key":"73280896599d0125f3df190f7966d2561a0d0937","name":"Smart TE Lite","description":"","documentationLinks":[]},"1327:376":{"key":"c5dcb75e6cc0ccc1d2c5b3aca2ee81e532b4b970","name":"PRZM","description":"","documentationLinks":[]},"1327:403":{"key":"fdfc455f2955e2f4381ac792c59137289556cac2","name":"Multi Code Data Formatting","description":"","documentationLinks":[]},"1327:410":{"key":"9e09e39195a0b64458e2e91e61b15bd4c5a26278","name":"Remote Management","description":"","documentationLinks":[]},"1327:417":{"key":"3c7d3578a5900a50d9429a7c77a400c2d77a5d6f","name":"Preferred Symbol","description":"","documentationLinks":[]},"1327:424":{"key":"eb6f998106dc88eb8337031c815ab49f87db8f9e","name":"Wi-Fi Friendly Mode","description":"Bluetooth","documentationLinks":[]},"1327:443":{"key":"99f6e0c14701a750e74740a2827e03145d4ffce8","name":"Intelligent Document Capture","description":"","documentationLinks":[]},"1327:470":{"key":"b8f863f07cd1ba6ae16e0610022f3399f36daa52","name":"123Scan","description":"","documentationLinks":[]},"1327:529":{"key":"e8af8d378864c0da3586e579c4c7f3d5c0b6dcd6","name":"Scan To Connect","description":"","documentationLinks":[]},"1327:548":{"key":"b0e47b062dc3af80596f33682be6c7751e4c86aa","name":"Scanner Control Application","description":"","documentationLinks":[]},"1327:565":{"key":"d1f3555489cce24b0ebed9e7201eea601959e7fd","name":"Scan Speed Analytics","description":"","documentationLinks":[]},"1327:572":{"key":"ec8650e006f7dc37ff1e993ce27e93d7ad0023f4","name":"Remote Diagnostics","description":"","documentationLinks":[]},"1327:595":{"key":"7bcea349614d95637e66fddbcaf06b4e28d82a6c","name":"123 RFID","description":"","documentationLinks":[]},"1327:612":{"key":"fc84bd6800a2ce27e57a1c543db823a2373f7b2c","name":"Blood Bag Plus","description":"","documentationLinks":[]},"1327:619":{"key":"d361b920472b59a6c5aaccc635355bef6590fa59","name":"Label Plus","description":"","documentationLinks":[]},"1327:626":{"key":"9cc37a9080b52964bb289b494bf5aac21acc0263","name":"Virtual Tether","description":"","documentationLinks":[]},"1327:633":{"key":"57ec1170fb3193fc25828ea6c7e47277435eb973","name":"Link OS","description":"","documentationLinks":[]},"1327:640":{"key":"4223ad6dd6923de5e67b24653752704ce193fc67","name":"MDM Connectors","description":"","documentationLinks":[]},"1327:647":{"key":"898f55a1df23b3fcc4c14ddd528f330187f8e4d8","name":"Browser Print","description":"","documentationLinks":[]},"1327:660":{"key":"d1abf0f98ee9e45be644b4c06b4e136510835fd9","name":"Cloud Connect","description":"","documentationLinks":[]},"1327:667":{"key":"c060801462bcd862d679571dd5f92e2522f92b6e","name":"Virtual Devices","description":"","documentationLinks":[]},"1327:678":{"key":"9861ffb6d1475b8ff328535ef5a0930073101c66","name":"Enterprise Connectors","description":"","documentationLinks":[]},"1327:685":{"key":"ede69463bd0f227ce2017e9ce7b9437f239b09af","name":"Pairing Solutions","description":"","documentationLinks":[]},"1327:704":{"key":"7a8278746ace27d38a01520a4c99b85dc3f3f1a3","name":"Scan And Pair","description":"","documentationLinks":[]},"1327:729":{"key":"cb269e1ea9c076ae3250e6f73d0853a623046e0b","name":"Zebra Designer","description":"","documentationLinks":[]},"1327:758":{"key":"4eab2fd93528b3de22f4df8b0138a3cfb9a1febe","name":"PDF Direct","description":"Print","documentationLinks":[]},"1327:765":{"key":"a211c9d29afa6fa7a7e5cf0fa31b6efd81009513","name":"Print Station","description":"","documentationLinks":[]},"1327:780":{"key":"f45c8eba47d910cd95254fedda7736162f62ac56","name":"Printer Profile Manager","description":"","documentationLinks":[]},"1327:795":{"key":"6753cb421dd07c37c426c963ac7871720e3b59d5","name":"Zebra Setup Utility","description":"","documentationLinks":[]},"1327:818":{"key":"a137efbd957879ecc966c1dc0a8697dd0a4e6f33","name":"Bluetooth Management","description":"","documentationLinks":[]},"1327:825":{"key":"a555f9fb40298e035c402ccae06df3aa14c57433","name":"Zebra OneCare","description":"","documentationLinks":[]},"1327:832":{"key":"9d26c7dbda99cae2466479d2d917dc2f6db1f338","name":"Visibility Services","description":"","documentationLinks":[]},"1327:843":{"key":"992562e87360944835a797ca34c253cc7a203c59","name":"Print Secure","description":"","documentationLinks":[]},"1327:858":{"key":"bce454710c9baf25cac336be25a63caed030a5cf","name":"Design Tools","description":"","documentationLinks":[]}},"schemaVersion":0,"styles":{"1:2":{"key":"e4fa20f35d2c34a96a908621be4749c83c9aafcb","name":"Light Mode/Text/Default","styleType":"FILL","remote":true,"description":"Use:\nPrimary text for content, Enabled text"},"1:3":{"key":"8d192dd816c3d2df612048194a289aef1b69fa8d","name":"Standard/Large Display/Heading 5","styleType":"TEXT","remote":true,"description":""},"1:4":{"key":"bbb824378ad20239be10695b3664fabc0c149627","name":"Light Mode/Border/Default","styleType":"FILL","remote":true,"description":""},"1:5":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""},"176:625":{"key":"b20b7f46602870c59b0864930b8fe432a0508343","name":"Light Mode/Icon/Default","styleType":"FILL","remote":true,"description":""}},"name":"IconsTestPage","lastModified":"2024-05-08T12:25:21Z","thumbnailUrl":"https://s3-alpha.figma.com/thumbnails/637b2816-d1f8-4faa-ac21-e03ffef0ef67?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWC5YUK2IUR%2F20240616%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20240616T120000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=6f6557db7c429abfeb0494183ec699f76e75629e611cb1dd917deec507933093","version":"5718042825","role":"viewer","editorType":"figma","linkAccess":"inherit"} \ No newline at end of file diff --git a/test/data/figma-connect-file.ts b/test/data/figma-connect-file.ts new file mode 100644 index 00000000..8387b98b --- /dev/null +++ b/test/data/figma-connect-file.ts @@ -0,0 +1,81 @@ +import ts from "typescript"; + +const importStatement = ts.factory.createImportDeclaration( + undefined, + ts.factory.createImportClause( + false, + undefined, + ts.factory.createNamedImports([ + ts.factory.createImportSpecifier(false, undefined, ts.factory.createIdentifier("figma")), + ts.factory.createImportSpecifier(false, undefined, ts.factory.createIdentifier("html")), + ]), + ), + ts.factory.createStringLiteral("@figma/code-connect/html"), +); + +export const figmaConnectFile = ts.factory.createSourceFile( + [ + importStatement, + ts.factory.createExpressionStatement( + ts.factory.createCallExpression( + ts.factory.createPropertyAccessExpression( + ts.factory.createIdentifier("figma"), + ts.factory.createIdentifier("connect"), + ), + undefined, + [ + ts.factory.createStringLiteral("https://www.figma.com/design/VQ7Aa3rDYB7mgpToI3bZ4D?node-id=123"), + ts.factory.createObjectLiteralExpression([ + ts.factory.createPropertyAssignment( + "props", + ts.factory.createObjectLiteralExpression([ + ts.factory.createPropertyAssignment( + "rounded", + ts.factory.createCallExpression( + ts.factory.createPropertyAccessExpression( + ts.factory.createIdentifier("figma"), + ts.factory.createIdentifier("enum"), + ), + undefined, + [ + ts.factory.createStringLiteral("Style"), + ts.factory.createObjectLiteralExpression([ + ts.factory.createPropertyAssignment("Round", ts.factory.createTrue()), + ts.factory.createPropertyAssignment("Sharp", ts.factory.createFalse()), + ]), + ], + ), + ), + ]), + ), + ts.factory.createPropertyAssignment( + "example", + ts.factory.createArrowFunction( + undefined, + undefined, + [ts.factory.createParameterDeclaration(undefined, undefined, "props")], + undefined, + undefined, + ts.factory.createTaggedTemplateExpression( + ts.factory.createIdentifier("html"), + undefined, + ts.factory.createTemplateExpression(ts.factory.createTemplateHead("star"), + ), + ]), + ), + ), + ), + ]), + ], + ), + ), + ], + ts.factory.createToken(ts.SyntaxKind.EndOfFileToken), + ts.NodeFlags.None, +); diff --git a/test/data/generatedFontResponse.json b/test/data/generatedFontResponse.json index 9649a7b5..0f976dd5 100644 --- a/test/data/generatedFontResponse.json +++ b/test/data/generatedFontResponse.json @@ -1 +1 @@ -{"dartDefinitions":[" ///
Add Box icon
\n static const IconData add_box = IconData(0xe001, fontFamily: family, fontPackage: package);"," ///
Add Circle Outline icon
\n static const IconData add_circle_outline = IconData(0xe002, fontFamily: family, fontPackage: package);"," ///
Add Circle icon
\n static const IconData add_circle = IconData(0xe003, fontFamily: family, fontPackage: package);"," ///
Add icon
\n static const IconData add = IconData(0xe004, fontFamily: family, fontPackage: package);"," ///
Android icon
\n static const IconData android = IconData(0xe005, fontFamily: family, fontPackage: package);"," ///
Backspace icon
\n static const IconData backspace = IconData(0xe006, fontFamily: family, fontPackage: package);"," ///
Block icon
\n static const IconData block = IconData(0xe007, fontFamily: family, fontPackage: package);"," ///
Cast Connected icon
\n static const IconData cast_connected = IconData(0xe008, fontFamily: family, fontPackage: package);"," ///
Cast icon
\n static const IconData cast = IconData(0xe009, fontFamily: family, fontPackage: package);"," ///
Chart Pie icon
\n static const IconData chart_pie = IconData(0xe00a, fontFamily: family, fontPackage: package);"," ///
Cloud Done icon
\n static const IconData cloud_done = IconData(0xe00b, fontFamily: family, fontPackage: package);"," ///
Cloud Download icon
\n static const IconData cloud_download = IconData(0xe00c, fontFamily: family, fontPackage: package);"," ///
Cloud Off icon
\n static const IconData cloud_off = IconData(0xe00d, fontFamily: family, fontPackage: package);"," ///
Cloud Outline icon
\n static const IconData cloud_outline = IconData(0xe00e, fontFamily: family, fontPackage: package);"," ///
Cloud icon
\n static const IconData cloud = IconData(0xe00f, fontFamily: family, fontPackage: package);"," ///
Cloud Upload icon
\n static const IconData cloud_upload = IconData(0xe010, fontFamily: family, fontPackage: package);"," ///
Content icon
\n static const IconData content = IconData(0xe011, fontFamily: family, fontPackage: package);"," ///
Copy File icon
\n static const IconData copy_file = IconData(0xe012, fontFamily: family, fontPackage: package);"," ///
Create New Folder icon
\n static const IconData create_new_folder = IconData(0xe013, fontFamily: family, fontPackage: package);"," ///
Desktop icon
\n static const IconData desktop = IconData(0xe014, fontFamily: family, fontPackage: package);"," ///
Device Settings icon
\n static const IconData device_settings = IconData(0xe015, fontFamily: family, fontPackage: package);"," ///
Devices Ecosystem icon
\n static const IconData devices_ecosystem = IconData(0xe016, fontFamily: family, fontPackage: package);"," ///
Doc Attach icon
\n static const IconData doc_attach = IconData(0xe017, fontFamily: family, fontPackage: package);"," ///
Downloading icon
\n static const IconData downloading = IconData(0xe018, fontFamily: family, fontPackage: package);"," ///
Email Outline icon
\n static const IconData email_outline = IconData(0xe019, fontFamily: family, fontPackage: package);"," ///
Email icon
\n static const IconData email = IconData(0xe01a, fontFamily: family, fontPackage: package);"," ///
File icon
\n static const IconData file = IconData(0xe01b, fontFamily: family, fontPackage: package);"," ///
Finished Download icon
\n static const IconData finished_download = IconData(0xe01c, fontFamily: family, fontPackage: package);"," ///
Flag icon
\n static const IconData flag = IconData(0xe01d, fontFamily: family, fontPackage: package);"," ///
Folder File icon
\n static const IconData folder_file = IconData(0xe01e, fontFamily: family, fontPackage: package);"," ///
Folder Outline icon
\n static const IconData folder_outline = IconData(0xe01f, fontFamily: family, fontPackage: package);"," ///
Folder icon
\n static const IconData folder = IconData(0xe020, fontFamily: family, fontPackage: package);"," ///
Grid View icon
\n static const IconData grid_view = IconData(0xe021, fontFamily: family, fontPackage: package);"," ///
Headphones icon
\n static const IconData headphones = IconData(0xe022, fontFamily: family, fontPackage: package);"," ///
Jpg Attach icon
\n static const IconData jpg_attach = IconData(0xe023, fontFamily: family, fontPackage: package);"," ///
Keyboard icon
\n static const IconData keyboard = IconData(0xe024, fontFamily: family, fontPackage: package);"," ///
Laptop icon
\n static const IconData laptop = IconData(0xe025, fontFamily: family, fontPackage: package);"," ///
Maintenance icon
\n static const IconData maintenance = IconData(0xe026, fontFamily: family, fontPackage: package);"," ///
Memory icon
\n static const IconData memory = IconData(0xe027, fontFamily: family, fontPackage: package);"," ///
Monitor icon
\n static const IconData monitor = IconData(0xe028, fontFamily: family, fontPackage: package);"," ///
Open New Off icon
\n static const IconData open_new_off = IconData(0xe029, fontFamily: family, fontPackage: package);"," ///
Page Height icon
\n static const IconData page_height = IconData(0xe02a, fontFamily: family, fontPackage: package);"," ///
Page Rotate icon
\n static const IconData page_rotate = IconData(0xe02b, fontFamily: family, fontPackage: package);"," ///
Page Width icon
\n static const IconData page_width = IconData(0xe02c, fontFamily: family, fontPackage: package);"," ///
Pdf Attach icon
\n static const IconData pdf_attach = IconData(0xe02d, fontFamily: family, fontPackage: package);"," ///
Phone Android icon
\n static const IconData phone_android = IconData(0xe02e, fontFamily: family, fontPackage: package);"," ///
Phone Iphone icon
\n static const IconData phone_iphone = IconData(0xe02f, fontFamily: family, fontPackage: package);"," ///
Phonelink icon
\n static const IconData phonelink = IconData(0xe030, fontFamily: family, fontPackage: package);"," ///
Png Attach icon
\n static const IconData png_attach = IconData(0xe031, fontFamily: family, fontPackage: package);"," ///
Ppt Attach icon
\n static const IconData ppt_attach = IconData(0xe032, fontFamily: family, fontPackage: package);"," ///
Printer icon
\n static const IconData printer = IconData(0xe033, fontFamily: family, fontPackage: package);"," ///
Publish icon
\n static const IconData publish = IconData(0xe034, fontFamily: family, fontPackage: package);"," ///
Push Pin icon
\n static const IconData push_pin = IconData(0xe035, fontFamily: family, fontPackage: package);"," ///
Redo icon
\n static const IconData redo = IconData(0xe036, fontFamily: family, fontPackage: package);"," ///
Remove Box icon
\n static const IconData remove_box = IconData(0xe037, fontFamily: family, fontPackage: package);"," ///
Remove Circle Outline icon
\n static const IconData remove_circle_outline = IconData(0xe038, fontFamily: family, fontPackage: package);"," ///
Remove Circle icon
\n static const IconData remove_circle = IconData(0xe039, fontFamily: family, fontPackage: package);"," ///
Remove icon
\n static const IconData remove = IconData(0xe03a, fontFamily: family, fontPackage: package);"," ///
Reply icon
\n static const IconData reply = IconData(0xe03b, fontFamily: family, fontPackage: package);"," ///
Save Alt icon
\n static const IconData save_alt = IconData(0xe03c, fontFamily: family, fontPackage: package);"," ///
Save File icon
\n static const IconData save_file = IconData(0xe03d, fontFamily: family, fontPackage: package);"," ///
Save icon
\n static const IconData save = IconData(0xe03e, fontFamily: family, fontPackage: package);"," ///
Scanner icon
\n static const IconData scanner = IconData(0xe03f, fontFamily: family, fontPackage: package);"," ///
Security icon
\n static const IconData security = IconData(0xe040, fontFamily: family, fontPackage: package);"," ///
Send icon
\n static const IconData send = IconData(0xe041, fontFamily: family, fontPackage: package);"," ///
Shared Folder icon
\n static const IconData shared_folder = IconData(0xe042, fontFamily: family, fontPackage: package);"," ///
Smart Phone icon
\n static const IconData smart_phone = IconData(0xe043, fontFamily: family, fontPackage: package);"," ///
Sort icon
\n static const IconData sort = IconData(0xe044, fontFamily: family, fontPackage: package);"," ///
Speaker icon
\n static const IconData speaker = IconData(0xe045, fontFamily: family, fontPackage: package);"," ///
Tablet Mac icon
\n static const IconData tablet_mac = IconData(0xe046, fontFamily: family, fontPackage: package);"," ///
Tablet icon
\n static const IconData tablet = IconData(0xe047, fontFamily: family, fontPackage: package);"," ///
Tv icon
\n static const IconData tv = IconData(0xe048, fontFamily: family, fontPackage: package);"," ///
Undo icon
\n static const IconData undo = IconData(0xe049, fontFamily: family, fontPackage: package);"," ///
Upload File icon
\n static const IconData upload_file = IconData(0xe04a, fontFamily: family, fontPackage: package);"," ///
Video Play icon
\n static const IconData video_play = IconData(0xe04b, fontFamily: family, fontPackage: package);"," ///
Watch icon
\n static const IconData watch = IconData(0xe04c, fontFamily: family, fontPackage: package);"],"dartRoundDefinitions":[" ///
Add Box icon (round)
\n static const IconData add_box_round = IconData(0xe001, fontFamily: familyRound, fontPackage: package);"," ///
Add Circle Outline icon (round)
\n static const IconData add_circle_outline_round = IconData(0xe002, fontFamily: familyRound, fontPackage: package);"," ///
Add Circle icon (round)
\n static const IconData add_circle_round = IconData(0xe003, fontFamily: familyRound, fontPackage: package);"," ///
Add icon (round)
\n static const IconData add_round = IconData(0xe004, fontFamily: familyRound, fontPackage: package);"," ///
Android icon (round)
\n static const IconData android_round = IconData(0xe005, fontFamily: familyRound, fontPackage: package);"," ///
Backspace icon (round)
\n static const IconData backspace_round = IconData(0xe006, fontFamily: familyRound, fontPackage: package);"," ///
Block icon (round)
\n static const IconData block_round = IconData(0xe007, fontFamily: familyRound, fontPackage: package);"," ///
Cast Connected icon (round)
\n static const IconData cast_connected_round = IconData(0xe008, fontFamily: familyRound, fontPackage: package);"," ///
Cast icon (round)
\n static const IconData cast_round = IconData(0xe009, fontFamily: familyRound, fontPackage: package);"," ///
Chart Pie icon (round)
\n static const IconData chart_pie_round = IconData(0xe00a, fontFamily: familyRound, fontPackage: package);"," ///
Cloud Done icon (round)
\n static const IconData cloud_done_round = IconData(0xe00b, fontFamily: familyRound, fontPackage: package);"," ///
Cloud Download icon (round)
\n static const IconData cloud_download_round = IconData(0xe00c, fontFamily: familyRound, fontPackage: package);"," ///
Cloud Off icon (round)
\n static const IconData cloud_off_round = IconData(0xe00d, fontFamily: familyRound, fontPackage: package);"," ///
Cloud Outline icon (round)
\n static const IconData cloud_outline_round = IconData(0xe00e, fontFamily: familyRound, fontPackage: package);"," ///
Cloud icon (round)
\n static const IconData cloud_round = IconData(0xe00f, fontFamily: familyRound, fontPackage: package);"," ///
Cloud Upload icon (round)
\n static const IconData cloud_upload_round = IconData(0xe010, fontFamily: familyRound, fontPackage: package);"," ///
Content icon (round)
\n static const IconData content_round = IconData(0xe011, fontFamily: familyRound, fontPackage: package);"," ///
Copy File icon (round)
\n static const IconData copy_file_round = IconData(0xe012, fontFamily: familyRound, fontPackage: package);"," ///
Create New Folder icon (round)
\n static const IconData create_new_folder_round = IconData(0xe013, fontFamily: familyRound, fontPackage: package);"," ///
Desktop icon (round)
\n static const IconData desktop_round = IconData(0xe014, fontFamily: familyRound, fontPackage: package);"," ///
Device Settings icon (round)
\n static const IconData device_settings_round = IconData(0xe015, fontFamily: familyRound, fontPackage: package);"," ///
Devices Ecosystem icon (round)
\n static const IconData devices_ecosystem_round = IconData(0xe016, fontFamily: familyRound, fontPackage: package);"," ///
Doc Attach icon (round)
\n static const IconData doc_attach_round = IconData(0xe017, fontFamily: familyRound, fontPackage: package);"," ///
Downloading icon (round)
\n static const IconData downloading_round = IconData(0xe018, fontFamily: familyRound, fontPackage: package);"," ///
Email Outline icon (round)
\n static const IconData email_outline_round = IconData(0xe019, fontFamily: familyRound, fontPackage: package);"," ///
Email icon (round)
\n static const IconData email_round = IconData(0xe01a, fontFamily: familyRound, fontPackage: package);"," ///
File icon (round)
\n static const IconData file_round = IconData(0xe01b, fontFamily: familyRound, fontPackage: package);"," ///
Finished Download icon (round)
\n static const IconData finished_download_round = IconData(0xe01c, fontFamily: familyRound, fontPackage: package);"," ///
Flag icon (round)
\n static const IconData flag_round = IconData(0xe01d, fontFamily: familyRound, fontPackage: package);"," ///
Folder File icon (round)
\n static const IconData folder_file_round = IconData(0xe01e, fontFamily: familyRound, fontPackage: package);"," ///
Folder Outline icon (round)
\n static const IconData folder_outline_round = IconData(0xe01f, fontFamily: familyRound, fontPackage: package);"," ///
Folder icon (round)
\n static const IconData folder_round = IconData(0xe020, fontFamily: familyRound, fontPackage: package);"," ///
Grid View icon (round)
\n static const IconData grid_view_round = IconData(0xe021, fontFamily: familyRound, fontPackage: package);"," ///
Headphones icon (round)
\n static const IconData headphones_round = IconData(0xe022, fontFamily: familyRound, fontPackage: package);"," ///
Jpg Attach icon (round)
\n static const IconData jpg_attach_round = IconData(0xe023, fontFamily: familyRound, fontPackage: package);"," ///
Keyboard icon (round)
\n static const IconData keyboard_round = IconData(0xe024, fontFamily: familyRound, fontPackage: package);"," ///
Laptop icon (round)
\n static const IconData laptop_round = IconData(0xe025, fontFamily: familyRound, fontPackage: package);"," ///
Maintenance icon (round)
\n static const IconData maintenance_round = IconData(0xe026, fontFamily: familyRound, fontPackage: package);"," ///
Memory icon (round)
\n static const IconData memory_round = IconData(0xe027, fontFamily: familyRound, fontPackage: package);"," ///
Monitor icon (round)
\n static const IconData monitor_round = IconData(0xe028, fontFamily: familyRound, fontPackage: package);"," ///
Open New Off icon (round)
\n static const IconData open_new_off_round = IconData(0xe029, fontFamily: familyRound, fontPackage: package);"," ///
Page Height icon (round)
\n static const IconData page_height_round = IconData(0xe02a, fontFamily: familyRound, fontPackage: package);"," ///
Page Rotate icon (round)
\n static const IconData page_rotate_round = IconData(0xe02b, fontFamily: familyRound, fontPackage: package);"," ///
Page Width icon (round)
\n static const IconData page_width_round = IconData(0xe02c, fontFamily: familyRound, fontPackage: package);"," ///
Pdf Attach icon (round)
\n static const IconData pdf_attach_round = IconData(0xe02d, fontFamily: familyRound, fontPackage: package);"," ///
Phone Android icon (round)
\n static const IconData phone_android_round = IconData(0xe02e, fontFamily: familyRound, fontPackage: package);"," ///
Phone Iphone icon (round)
\n static const IconData phone_iphone_round = IconData(0xe02f, fontFamily: familyRound, fontPackage: package);"," ///
Phonelink icon (round)
\n static const IconData phonelink_round = IconData(0xe030, fontFamily: familyRound, fontPackage: package);"," ///
Png Attach icon (round)
\n static const IconData png_attach_round = IconData(0xe031, fontFamily: familyRound, fontPackage: package);"," ///
Ppt Attach icon (round)
\n static const IconData ppt_attach_round = IconData(0xe032, fontFamily: familyRound, fontPackage: package);"," ///
Printer icon (round)
\n static const IconData printer_round = IconData(0xe033, fontFamily: familyRound, fontPackage: package);"," ///
Publish icon (round)
\n static const IconData publish_round = IconData(0xe034, fontFamily: familyRound, fontPackage: package);"," ///
Push Pin icon (round)
\n static const IconData push_pin_round = IconData(0xe035, fontFamily: familyRound, fontPackage: package);"," ///
Redo icon (round)
\n static const IconData redo_round = IconData(0xe036, fontFamily: familyRound, fontPackage: package);"," ///
Remove Box icon (round)
\n static const IconData remove_box_round = IconData(0xe037, fontFamily: familyRound, fontPackage: package);"," ///
Remove Circle Outline icon (round)
\n static const IconData remove_circle_outline_round = IconData(0xe038, fontFamily: familyRound, fontPackage: package);"," ///
Remove Circle icon (round)
\n static const IconData remove_circle_round = IconData(0xe039, fontFamily: familyRound, fontPackage: package);"," ///
Remove icon (round)
\n static const IconData remove_round = IconData(0xe03a, fontFamily: familyRound, fontPackage: package);"," ///
Reply icon (round)
\n static const IconData reply_round = IconData(0xe03b, fontFamily: familyRound, fontPackage: package);"," ///
Save Alt icon (round)
\n static const IconData save_alt_round = IconData(0xe03c, fontFamily: familyRound, fontPackage: package);"," ///
Save File icon (round)
\n static const IconData save_file_round = IconData(0xe03d, fontFamily: familyRound, fontPackage: package);"," ///
Save icon (round)
\n static const IconData save_round = IconData(0xe03e, fontFamily: familyRound, fontPackage: package);"," ///
Scanner icon (round)
\n static const IconData scanner_round = IconData(0xe03f, fontFamily: familyRound, fontPackage: package);"," ///
Security icon (round)
\n static const IconData security_round = IconData(0xe040, fontFamily: familyRound, fontPackage: package);"," ///
Send icon (round)
\n static const IconData send_round = IconData(0xe041, fontFamily: familyRound, fontPackage: package);"," ///
Shared Folder icon (round)
\n static const IconData shared_folder_round = IconData(0xe042, fontFamily: familyRound, fontPackage: package);"," ///
Smart Phone icon (round)
\n static const IconData smart_phone_round = IconData(0xe043, fontFamily: familyRound, fontPackage: package);"," ///
Sort icon (round)
\n static const IconData sort_round = IconData(0xe044, fontFamily: familyRound, fontPackage: package);"," ///
Speaker icon (round)
\n static const IconData speaker_round = IconData(0xe045, fontFamily: familyRound, fontPackage: package);"," ///
Tablet Mac icon (round)
\n static const IconData tablet_mac_round = IconData(0xe046, fontFamily: familyRound, fontPackage: package);"," ///
Tablet icon (round)
\n static const IconData tablet_round = IconData(0xe047, fontFamily: familyRound, fontPackage: package);"," ///
Tv icon (round)
\n static const IconData tv_round = IconData(0xe048, fontFamily: familyRound, fontPackage: package);"," ///
Undo icon (round)
\n static const IconData undo_round = IconData(0xe049, fontFamily: familyRound, fontPackage: package);"," ///
Upload File icon (round)
\n static const IconData upload_file_round = IconData(0xe04a, fontFamily: familyRound, fontPackage: package);"," ///
Video Play icon (round)
\n static const IconData video_play_round = IconData(0xe04b, fontFamily: familyRound, fontPackage: package);"," ///
Watch icon (round)
\n static const IconData watch_round = IconData(0xe04c, fontFamily: familyRound, fontPackage: package);"],"dartSharpDefinitions":[" ///
Add Box icon (sharp)
\n static const IconData add_box_sharp = IconData(0xe001, fontFamily: familySharp, fontPackage: package);"," ///
Add Circle Outline icon (sharp)
\n static const IconData add_circle_outline_sharp = IconData(0xe002, fontFamily: familySharp, fontPackage: package);"," ///
Add Circle icon (sharp)
\n static const IconData add_circle_sharp = IconData(0xe003, fontFamily: familySharp, fontPackage: package);"," ///
Add icon (sharp)
\n static const IconData add_sharp = IconData(0xe004, fontFamily: familySharp, fontPackage: package);"," ///
Android icon (sharp)
\n static const IconData android_sharp = IconData(0xe005, fontFamily: familySharp, fontPackage: package);"," ///
Backspace icon (sharp)
\n static const IconData backspace_sharp = IconData(0xe006, fontFamily: familySharp, fontPackage: package);"," ///
Block icon (sharp)
\n static const IconData block_sharp = IconData(0xe007, fontFamily: familySharp, fontPackage: package);"," ///
Cast Connected icon (sharp)
\n static const IconData cast_connected_sharp = IconData(0xe008, fontFamily: familySharp, fontPackage: package);"," ///
Cast icon (sharp)
\n static const IconData cast_sharp = IconData(0xe009, fontFamily: familySharp, fontPackage: package);"," ///
Chart Pie icon (sharp)
\n static const IconData chart_pie_sharp = IconData(0xe00a, fontFamily: familySharp, fontPackage: package);"," ///
Cloud Done icon (sharp)
\n static const IconData cloud_done_sharp = IconData(0xe00b, fontFamily: familySharp, fontPackage: package);"," ///
Cloud Download icon (sharp)
\n static const IconData cloud_download_sharp = IconData(0xe00c, fontFamily: familySharp, fontPackage: package);"," ///
Cloud Off icon (sharp)
\n static const IconData cloud_off_sharp = IconData(0xe00d, fontFamily: familySharp, fontPackage: package);"," ///
Cloud Outline icon (sharp)
\n static const IconData cloud_outline_sharp = IconData(0xe00e, fontFamily: familySharp, fontPackage: package);"," ///
Cloud icon (sharp)
\n static const IconData cloud_sharp = IconData(0xe00f, fontFamily: familySharp, fontPackage: package);"," ///
Cloud Upload icon (sharp)
\n static const IconData cloud_upload_sharp = IconData(0xe010, fontFamily: familySharp, fontPackage: package);"," ///
Content icon (sharp)
\n static const IconData content_sharp = IconData(0xe011, fontFamily: familySharp, fontPackage: package);"," ///
Copy File icon (sharp)
\n static const IconData copy_file_sharp = IconData(0xe012, fontFamily: familySharp, fontPackage: package);"," ///
Create New Folder icon (sharp)
\n static const IconData create_new_folder_sharp = IconData(0xe013, fontFamily: familySharp, fontPackage: package);"," ///
Desktop icon (sharp)
\n static const IconData desktop_sharp = IconData(0xe014, fontFamily: familySharp, fontPackage: package);"," ///
Device Settings icon (sharp)
\n static const IconData device_settings_sharp = IconData(0xe015, fontFamily: familySharp, fontPackage: package);"," ///
Devices Ecosystem icon (sharp)
\n static const IconData devices_ecosystem_sharp = IconData(0xe016, fontFamily: familySharp, fontPackage: package);"," ///
Doc Attach icon (sharp)
\n static const IconData doc_attach_sharp = IconData(0xe017, fontFamily: familySharp, fontPackage: package);"," ///
Downloading icon (sharp)
\n static const IconData downloading_sharp = IconData(0xe018, fontFamily: familySharp, fontPackage: package);"," ///
Email Outline icon (sharp)
\n static const IconData email_outline_sharp = IconData(0xe019, fontFamily: familySharp, fontPackage: package);"," ///
Email icon (sharp)
\n static const IconData email_sharp = IconData(0xe01a, fontFamily: familySharp, fontPackage: package);"," ///
File icon (sharp)
\n static const IconData file_sharp = IconData(0xe01b, fontFamily: familySharp, fontPackage: package);"," ///
Finished Download icon (sharp)
\n static const IconData finished_download_sharp = IconData(0xe01c, fontFamily: familySharp, fontPackage: package);"," ///
Flag icon (sharp)
\n static const IconData flag_sharp = IconData(0xe01d, fontFamily: familySharp, fontPackage: package);"," ///
Folder File icon (sharp)
\n static const IconData folder_file_sharp = IconData(0xe01e, fontFamily: familySharp, fontPackage: package);"," ///
Folder Outline icon (sharp)
\n static const IconData folder_outline_sharp = IconData(0xe01f, fontFamily: familySharp, fontPackage: package);"," ///
Folder icon (sharp)
\n static const IconData folder_sharp = IconData(0xe020, fontFamily: familySharp, fontPackage: package);"," ///
Grid View icon (sharp)
\n static const IconData grid_view_sharp = IconData(0xe021, fontFamily: familySharp, fontPackage: package);"," ///
Headphones icon (sharp)
\n static const IconData headphones_sharp = IconData(0xe022, fontFamily: familySharp, fontPackage: package);"," ///
Jpg Attach icon (sharp)
\n static const IconData jpg_attach_sharp = IconData(0xe023, fontFamily: familySharp, fontPackage: package);"," ///
Keyboard icon (sharp)
\n static const IconData keyboard_sharp = IconData(0xe024, fontFamily: familySharp, fontPackage: package);"," ///
Laptop icon (sharp)
\n static const IconData laptop_sharp = IconData(0xe025, fontFamily: familySharp, fontPackage: package);"," ///
Maintenance icon (sharp)
\n static const IconData maintenance_sharp = IconData(0xe026, fontFamily: familySharp, fontPackage: package);"," ///
Memory icon (sharp)
\n static const IconData memory_sharp = IconData(0xe027, fontFamily: familySharp, fontPackage: package);"," ///
Monitor icon (sharp)
\n static const IconData monitor_sharp = IconData(0xe028, fontFamily: familySharp, fontPackage: package);"," ///
Open New Off icon (sharp)
\n static const IconData open_new_off_sharp = IconData(0xe029, fontFamily: familySharp, fontPackage: package);"," ///
Page Height icon (sharp)
\n static const IconData page_height_sharp = IconData(0xe02a, fontFamily: familySharp, fontPackage: package);"," ///
Page Rotate icon (sharp)
\n static const IconData page_rotate_sharp = IconData(0xe02b, fontFamily: familySharp, fontPackage: package);"," ///
Page Width icon (sharp)
\n static const IconData page_width_sharp = IconData(0xe02c, fontFamily: familySharp, fontPackage: package);"," ///
Pdf Attach icon (sharp)
\n static const IconData pdf_attach_sharp = IconData(0xe02d, fontFamily: familySharp, fontPackage: package);"," ///
Phone Android icon (sharp)
\n static const IconData phone_android_sharp = IconData(0xe02e, fontFamily: familySharp, fontPackage: package);"," ///
Phone Iphone icon (sharp)
\n static const IconData phone_iphone_sharp = IconData(0xe02f, fontFamily: familySharp, fontPackage: package);"," ///
Phonelink icon (sharp)
\n static const IconData phonelink_sharp = IconData(0xe030, fontFamily: familySharp, fontPackage: package);"," ///
Png Attach icon (sharp)
\n static const IconData png_attach_sharp = IconData(0xe031, fontFamily: familySharp, fontPackage: package);"," ///
Ppt Attach icon (sharp)
\n static const IconData ppt_attach_sharp = IconData(0xe032, fontFamily: familySharp, fontPackage: package);"," ///
Printer icon (sharp)
\n static const IconData printer_sharp = IconData(0xe033, fontFamily: familySharp, fontPackage: package);"," ///
Publish icon (sharp)
\n static const IconData publish_sharp = IconData(0xe034, fontFamily: familySharp, fontPackage: package);"," ///
Push Pin icon (sharp)
\n static const IconData push_pin_sharp = IconData(0xe035, fontFamily: familySharp, fontPackage: package);"," ///
Redo icon (sharp)
\n static const IconData redo_sharp = IconData(0xe036, fontFamily: familySharp, fontPackage: package);"," ///
Remove Box icon (sharp)
\n static const IconData remove_box_sharp = IconData(0xe037, fontFamily: familySharp, fontPackage: package);"," ///
Remove Circle Outline icon (sharp)
\n static const IconData remove_circle_outline_sharp = IconData(0xe038, fontFamily: familySharp, fontPackage: package);"," ///
Remove Circle icon (sharp)
\n static const IconData remove_circle_sharp = IconData(0xe039, fontFamily: familySharp, fontPackage: package);"," ///
Remove icon (sharp)
\n static const IconData remove_sharp = IconData(0xe03a, fontFamily: familySharp, fontPackage: package);"," ///
Reply icon (sharp)
\n static const IconData reply_sharp = IconData(0xe03b, fontFamily: familySharp, fontPackage: package);"," ///
Save Alt icon (sharp)
\n static const IconData save_alt_sharp = IconData(0xe03c, fontFamily: familySharp, fontPackage: package);"," ///
Save File icon (sharp)
\n static const IconData save_file_sharp = IconData(0xe03d, fontFamily: familySharp, fontPackage: package);"," ///
Save icon (sharp)
\n static const IconData save_sharp = IconData(0xe03e, fontFamily: familySharp, fontPackage: package);"," ///
Scanner icon (sharp)
\n static const IconData scanner_sharp = IconData(0xe03f, fontFamily: familySharp, fontPackage: package);"," ///
Security icon (sharp)
\n static const IconData security_sharp = IconData(0xe040, fontFamily: familySharp, fontPackage: package);"," ///
Send icon (sharp)
\n static const IconData send_sharp = IconData(0xe041, fontFamily: familySharp, fontPackage: package);"," ///
Shared Folder icon (sharp)
\n static const IconData shared_folder_sharp = IconData(0xe042, fontFamily: familySharp, fontPackage: package);"," ///
Smart Phone icon (sharp)
\n static const IconData smart_phone_sharp = IconData(0xe043, fontFamily: familySharp, fontPackage: package);"," ///
Sort icon (sharp)
\n static const IconData sort_sharp = IconData(0xe044, fontFamily: familySharp, fontPackage: package);"," ///
Speaker icon (sharp)
\n static const IconData speaker_sharp = IconData(0xe045, fontFamily: familySharp, fontPackage: package);"," ///
Tablet Mac icon (sharp)
\n static const IconData tablet_mac_sharp = IconData(0xe046, fontFamily: familySharp, fontPackage: package);"," ///
Tablet icon (sharp)
\n static const IconData tablet_sharp = IconData(0xe047, fontFamily: familySharp, fontPackage: package);"," ///
Tv icon (sharp)
\n static const IconData tv_sharp = IconData(0xe048, fontFamily: familySharp, fontPackage: package);"," ///
Undo icon (sharp)
\n static const IconData undo_sharp = IconData(0xe049, fontFamily: familySharp, fontPackage: package);"," ///
Upload File icon (sharp)
\n static const IconData upload_file_sharp = IconData(0xe04a, fontFamily: familySharp, fontPackage: package);"," ///
Video Play icon (sharp)
\n static const IconData video_play_sharp = IconData(0xe04b, fontFamily: familySharp, fontPackage: package);"," ///
Watch icon (sharp)
\n static const IconData watch_sharp = IconData(0xe04c, fontFamily: familySharp, fontPackage: package);"],"iconNames":["add_box","add_circle_outline","add_circle","add","android","backspace","block","cast_connected","cast","chart_pie","cloud_done","cloud_download","cloud_off","cloud_outline","cloud","cloud_upload","content","copy_file","create_new_folder","desktop","device_settings","devices_ecosystem","doc_attach","downloading","email_outline","email","file","finished_download","flag","folder_file","folder_outline","folder","grid_view","headphones","jpg_attach","keyboard","laptop","maintenance","memory","monitor","open_new_off","page_height","page_rotate","page_width","pdf_attach","phone_android","phone_iphone","phonelink","png_attach","ppt_attach","printer","publish","push_pin","redo","remove_box","remove_circle_outline","remove_circle","remove","reply","save_alt","save_file","save","scanner","security","send","shared_folder","smart_phone","sort","speaker","tablet_mac","tablet","tv","undo","upload_file","video_play","watch"]} \ No newline at end of file +{"dartDefinitions":[" static const IconData add_box = IconData(0xe001, fontFamily: family, fontPackage: package);"," static const IconData add_circle_outline = IconData(0xe002, fontFamily: family, fontPackage: package);"," static const IconData add_circle = IconData(0xe003, fontFamily: family, fontPackage: package);"," static const IconData add = IconData(0xe004, fontFamily: family, fontPackage: package);"," static const IconData android = IconData(0xe005, fontFamily: family, fontPackage: package);"," static const IconData backspace = IconData(0xe006, fontFamily: family, fontPackage: package);"," static const IconData block = IconData(0xe007, fontFamily: family, fontPackage: package);"," static const IconData cast_connected = IconData(0xe008, fontFamily: family, fontPackage: package);"," static const IconData cast = IconData(0xe009, fontFamily: family, fontPackage: package);"," static const IconData chart_pie = IconData(0xe00a, fontFamily: family, fontPackage: package);"," static const IconData cloud_done = IconData(0xe00b, fontFamily: family, fontPackage: package);"," static const IconData cloud_download = IconData(0xe00c, fontFamily: family, fontPackage: package);"," static const IconData cloud_off = IconData(0xe00d, fontFamily: family, fontPackage: package);"," static const IconData cloud_outline = IconData(0xe00e, fontFamily: family, fontPackage: package);"," static const IconData cloud = IconData(0xe00f, fontFamily: family, fontPackage: package);"," static const IconData cloud_upload = IconData(0xe010, fontFamily: family, fontPackage: package);"," static const IconData content = IconData(0xe011, fontFamily: family, fontPackage: package);"," static const IconData copy_file = IconData(0xe012, fontFamily: family, fontPackage: package);"," static const IconData create_new_folder = IconData(0xe013, fontFamily: family, fontPackage: package);"," static const IconData desktop = IconData(0xe014, fontFamily: family, fontPackage: package);"," static const IconData device_settings = IconData(0xe015, fontFamily: family, fontPackage: package);"," static const IconData devices_ecosystem = IconData(0xe016, fontFamily: family, fontPackage: package);"," static const IconData doc_attach = IconData(0xe017, fontFamily: family, fontPackage: package);"," static const IconData downloading = IconData(0xe018, fontFamily: family, fontPackage: package);"," static const IconData email_outline = IconData(0xe019, fontFamily: family, fontPackage: package);"," static const IconData email = IconData(0xe01a, fontFamily: family, fontPackage: package);"," static const IconData file = IconData(0xe01b, fontFamily: family, fontPackage: package);"," static const IconData finished_download = IconData(0xe01c, fontFamily: family, fontPackage: package);"," static const IconData flag = IconData(0xe01d, fontFamily: family, fontPackage: package);"," static const IconData folder_file = IconData(0xe01e, fontFamily: family, fontPackage: package);"," static const IconData folder_outline = IconData(0xe01f, fontFamily: family, fontPackage: package);"," static const IconData folder = IconData(0xe020, fontFamily: family, fontPackage: package);"," static const IconData grid_view = IconData(0xe021, fontFamily: family, fontPackage: package);"," static const IconData headphones = IconData(0xe022, fontFamily: family, fontPackage: package);"," static const IconData jpg_attach = IconData(0xe023, fontFamily: family, fontPackage: package);"," static const IconData keyboard = IconData(0xe024, fontFamily: family, fontPackage: package);"," static const IconData laptop = IconData(0xe025, fontFamily: family, fontPackage: package);"," static const IconData maintenance = IconData(0xe026, fontFamily: family, fontPackage: package);"," static const IconData memory = IconData(0xe027, fontFamily: family, fontPackage: package);"," static const IconData monitor = IconData(0xe028, fontFamily: family, fontPackage: package);"," static const IconData open_new_off = IconData(0xe029, fontFamily: family, fontPackage: package);"," static const IconData page_height = IconData(0xe02a, fontFamily: family, fontPackage: package);"," static const IconData page_rotate = IconData(0xe02b, fontFamily: family, fontPackage: package);"," static const IconData page_width = IconData(0xe02c, fontFamily: family, fontPackage: package);"," static const IconData pdf_attach = IconData(0xe02d, fontFamily: family, fontPackage: package);"," static const IconData phone_android = IconData(0xe02e, fontFamily: family, fontPackage: package);"," static const IconData phone_iphone = IconData(0xe02f, fontFamily: family, fontPackage: package);"," static const IconData phonelink = IconData(0xe030, fontFamily: family, fontPackage: package);"," static const IconData png_attach = IconData(0xe031, fontFamily: family, fontPackage: package);"," static const IconData ppt_attach = IconData(0xe032, fontFamily: family, fontPackage: package);"," static const IconData printer = IconData(0xe033, fontFamily: family, fontPackage: package);"," static const IconData publish = IconData(0xe034, fontFamily: family, fontPackage: package);"," static const IconData push_pin = IconData(0xe035, fontFamily: family, fontPackage: package);"," static const IconData redo = IconData(0xe036, fontFamily: family, fontPackage: package);"," static const IconData remove_box = IconData(0xe037, fontFamily: family, fontPackage: package);"," static const IconData remove_circle_outline = IconData(0xe038, fontFamily: family, fontPackage: package);"," static const IconData remove_circle = IconData(0xe039, fontFamily: family, fontPackage: package);"," static const IconData remove = IconData(0xe03a, fontFamily: family, fontPackage: package);"," static const IconData reply = IconData(0xe03b, fontFamily: family, fontPackage: package);"," static const IconData save_alt = IconData(0xe03c, fontFamily: family, fontPackage: package);"," static const IconData save_file = IconData(0xe03d, fontFamily: family, fontPackage: package);"," static const IconData save = IconData(0xe03e, fontFamily: family, fontPackage: package);"," static const IconData scanner = IconData(0xe03f, fontFamily: family, fontPackage: package);"," static const IconData security = IconData(0xe040, fontFamily: family, fontPackage: package);"," static const IconData send = IconData(0xe041, fontFamily: family, fontPackage: package);"," static const IconData shared_folder = IconData(0xe042, fontFamily: family, fontPackage: package);"," static const IconData smart_phone = IconData(0xe043, fontFamily: family, fontPackage: package);"," static const IconData sort = IconData(0xe044, fontFamily: family, fontPackage: package);"," static const IconData speaker = IconData(0xe045, fontFamily: family, fontPackage: package);"," static const IconData tablet_mac = IconData(0xe046, fontFamily: family, fontPackage: package);"," static const IconData tablet = IconData(0xe047, fontFamily: family, fontPackage: package);"," static const IconData tv = IconData(0xe048, fontFamily: family, fontPackage: package);"," static const IconData undo = IconData(0xe049, fontFamily: family, fontPackage: package);"," static const IconData upload_file = IconData(0xe04a, fontFamily: family, fontPackage: package);"," static const IconData video_play = IconData(0xe04b, fontFamily: family, fontPackage: package);"," static const IconData watch = IconData(0xe04c, fontFamily: family, fontPackage: package);"],"dartRoundDefinitions":[" static const IconData add_box_round = IconData(0xe001, fontFamily: familyRound, fontPackage: package);"," static const IconData add_circle_outline_round = IconData(0xe002, fontFamily: familyRound, fontPackage: package);"," static const IconData add_circle_round = IconData(0xe003, fontFamily: familyRound, fontPackage: package);"," static const IconData add_round = IconData(0xe004, fontFamily: familyRound, fontPackage: package);"," static const IconData android_round = IconData(0xe005, fontFamily: familyRound, fontPackage: package);"," static const IconData backspace_round = IconData(0xe006, fontFamily: familyRound, fontPackage: package);"," static const IconData block_round = IconData(0xe007, fontFamily: familyRound, fontPackage: package);"," static const IconData cast_connected_round = IconData(0xe008, fontFamily: familyRound, fontPackage: package);"," static const IconData cast_round = IconData(0xe009, fontFamily: familyRound, fontPackage: package);"," static const IconData chart_pie_round = IconData(0xe00a, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_done_round = IconData(0xe00b, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_download_round = IconData(0xe00c, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_off_round = IconData(0xe00d, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_outline_round = IconData(0xe00e, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_round = IconData(0xe00f, fontFamily: familyRound, fontPackage: package);"," static const IconData cloud_upload_round = IconData(0xe010, fontFamily: familyRound, fontPackage: package);"," static const IconData content_round = IconData(0xe011, fontFamily: familyRound, fontPackage: package);"," static const IconData copy_file_round = IconData(0xe012, fontFamily: familyRound, fontPackage: package);"," static const IconData create_new_folder_round = IconData(0xe013, fontFamily: familyRound, fontPackage: package);"," static const IconData desktop_round = IconData(0xe014, fontFamily: familyRound, fontPackage: package);"," static const IconData device_settings_round = IconData(0xe015, fontFamily: familyRound, fontPackage: package);"," static const IconData devices_ecosystem_round = IconData(0xe016, fontFamily: familyRound, fontPackage: package);"," static const IconData doc_attach_round = IconData(0xe017, fontFamily: familyRound, fontPackage: package);"," static const IconData downloading_round = IconData(0xe018, fontFamily: familyRound, fontPackage: package);"," static const IconData email_outline_round = IconData(0xe019, fontFamily: familyRound, fontPackage: package);"," static const IconData email_round = IconData(0xe01a, fontFamily: familyRound, fontPackage: package);"," static const IconData file_round = IconData(0xe01b, fontFamily: familyRound, fontPackage: package);"," static const IconData finished_download_round = IconData(0xe01c, fontFamily: familyRound, fontPackage: package);"," static const IconData flag_round = IconData(0xe01d, fontFamily: familyRound, fontPackage: package);"," static const IconData folder_file_round = IconData(0xe01e, fontFamily: familyRound, fontPackage: package);"," static const IconData folder_outline_round = IconData(0xe01f, fontFamily: familyRound, fontPackage: package);"," static const IconData folder_round = IconData(0xe020, fontFamily: familyRound, fontPackage: package);"," static const IconData grid_view_round = IconData(0xe021, fontFamily: familyRound, fontPackage: package);"," static const IconData headphones_round = IconData(0xe022, fontFamily: familyRound, fontPackage: package);"," static const IconData jpg_attach_round = IconData(0xe023, fontFamily: familyRound, fontPackage: package);"," static const IconData keyboard_round = IconData(0xe024, fontFamily: familyRound, fontPackage: package);"," static const IconData laptop_round = IconData(0xe025, fontFamily: familyRound, fontPackage: package);"," static const IconData maintenance_round = IconData(0xe026, fontFamily: familyRound, fontPackage: package);"," static const IconData memory_round = IconData(0xe027, fontFamily: familyRound, fontPackage: package);"," static const IconData monitor_round = IconData(0xe028, fontFamily: familyRound, fontPackage: package);"," static const IconData open_new_off_round = IconData(0xe029, fontFamily: familyRound, fontPackage: package);"," static const IconData page_height_round = IconData(0xe02a, fontFamily: familyRound, fontPackage: package);"," static const IconData page_rotate_round = IconData(0xe02b, fontFamily: familyRound, fontPackage: package);"," static const IconData page_width_round = IconData(0xe02c, fontFamily: familyRound, fontPackage: package);"," static const IconData pdf_attach_round = IconData(0xe02d, fontFamily: familyRound, fontPackage: package);"," static const IconData phone_android_round = IconData(0xe02e, fontFamily: familyRound, fontPackage: package);"," static const IconData phone_iphone_round = IconData(0xe02f, fontFamily: familyRound, fontPackage: package);"," static const IconData phonelink_round = IconData(0xe030, fontFamily: familyRound, fontPackage: package);"," static const IconData png_attach_round = IconData(0xe031, fontFamily: familyRound, fontPackage: package);"," static const IconData ppt_attach_round = IconData(0xe032, fontFamily: familyRound, fontPackage: package);"," static const IconData printer_round = IconData(0xe033, fontFamily: familyRound, fontPackage: package);"," static const IconData publish_round = IconData(0xe034, fontFamily: familyRound, fontPackage: package);"," static const IconData push_pin_round = IconData(0xe035, fontFamily: familyRound, fontPackage: package);"," static const IconData redo_round = IconData(0xe036, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_box_round = IconData(0xe037, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_circle_outline_round = IconData(0xe038, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_circle_round = IconData(0xe039, fontFamily: familyRound, fontPackage: package);"," static const IconData remove_round = IconData(0xe03a, fontFamily: familyRound, fontPackage: package);"," static const IconData reply_round = IconData(0xe03b, fontFamily: familyRound, fontPackage: package);"," static const IconData save_alt_round = IconData(0xe03c, fontFamily: familyRound, fontPackage: package);"," static const IconData save_file_round = IconData(0xe03d, fontFamily: familyRound, fontPackage: package);"," static const IconData save_round = IconData(0xe03e, fontFamily: familyRound, fontPackage: package);"," static const IconData scanner_round = IconData(0xe03f, fontFamily: familyRound, fontPackage: package);"," static const IconData security_round = IconData(0xe040, fontFamily: familyRound, fontPackage: package);"," static const IconData send_round = IconData(0xe041, fontFamily: familyRound, fontPackage: package);"," static const IconData shared_folder_round = IconData(0xe042, fontFamily: familyRound, fontPackage: package);"," static const IconData smart_phone_round = IconData(0xe043, fontFamily: familyRound, fontPackage: package);"," static const IconData sort_round = IconData(0xe044, fontFamily: familyRound, fontPackage: package);"," static const IconData speaker_round = IconData(0xe045, fontFamily: familyRound, fontPackage: package);"," static const IconData tablet_mac_round = IconData(0xe046, fontFamily: familyRound, fontPackage: package);"," static const IconData tablet_round = IconData(0xe047, fontFamily: familyRound, fontPackage: package);"," static const IconData tv_round = IconData(0xe048, fontFamily: familyRound, fontPackage: package);"," static const IconData undo_round = IconData(0xe049, fontFamily: familyRound, fontPackage: package);"," static const IconData upload_file_round = IconData(0xe04a, fontFamily: familyRound, fontPackage: package);"," static const IconData video_play_round = IconData(0xe04b, fontFamily: familyRound, fontPackage: package);"," static const IconData watch_round = IconData(0xe04c, fontFamily: familyRound, fontPackage: package);"],"dartSharpDefinitions":[" static const IconData add_box_sharp = IconData(0xe001, fontFamily: familySharp, fontPackage: package);"," static const IconData add_circle_outline_sharp = IconData(0xe002, fontFamily: familySharp, fontPackage: package);"," static const IconData add_circle_sharp = IconData(0xe003, fontFamily: familySharp, fontPackage: package);"," static const IconData add_sharp = IconData(0xe004, fontFamily: familySharp, fontPackage: package);"," static const IconData android_sharp = IconData(0xe005, fontFamily: familySharp, fontPackage: package);"," static const IconData backspace_sharp = IconData(0xe006, fontFamily: familySharp, fontPackage: package);"," static const IconData block_sharp = IconData(0xe007, fontFamily: familySharp, fontPackage: package);"," static const IconData cast_connected_sharp = IconData(0xe008, fontFamily: familySharp, fontPackage: package);"," static const IconData cast_sharp = IconData(0xe009, fontFamily: familySharp, fontPackage: package);"," static const IconData chart_pie_sharp = IconData(0xe00a, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_done_sharp = IconData(0xe00b, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_download_sharp = IconData(0xe00c, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_off_sharp = IconData(0xe00d, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_outline_sharp = IconData(0xe00e, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_sharp = IconData(0xe00f, fontFamily: familySharp, fontPackage: package);"," static const IconData cloud_upload_sharp = IconData(0xe010, fontFamily: familySharp, fontPackage: package);"," static const IconData content_sharp = IconData(0xe011, fontFamily: familySharp, fontPackage: package);"," static const IconData copy_file_sharp = IconData(0xe012, fontFamily: familySharp, fontPackage: package);"," static const IconData create_new_folder_sharp = IconData(0xe013, fontFamily: familySharp, fontPackage: package);"," static const IconData desktop_sharp = IconData(0xe014, fontFamily: familySharp, fontPackage: package);"," static const IconData device_settings_sharp = IconData(0xe015, fontFamily: familySharp, fontPackage: package);"," static const IconData devices_ecosystem_sharp = IconData(0xe016, fontFamily: familySharp, fontPackage: package);"," static const IconData doc_attach_sharp = IconData(0xe017, fontFamily: familySharp, fontPackage: package);"," static const IconData downloading_sharp = IconData(0xe018, fontFamily: familySharp, fontPackage: package);"," static const IconData email_outline_sharp = IconData(0xe019, fontFamily: familySharp, fontPackage: package);"," static const IconData email_sharp = IconData(0xe01a, fontFamily: familySharp, fontPackage: package);"," static const IconData file_sharp = IconData(0xe01b, fontFamily: familySharp, fontPackage: package);"," static const IconData finished_download_sharp = IconData(0xe01c, fontFamily: familySharp, fontPackage: package);"," static const IconData flag_sharp = IconData(0xe01d, fontFamily: familySharp, fontPackage: package);"," static const IconData folder_file_sharp = IconData(0xe01e, fontFamily: familySharp, fontPackage: package);"," static const IconData folder_outline_sharp = IconData(0xe01f, fontFamily: familySharp, fontPackage: package);"," static const IconData folder_sharp = IconData(0xe020, fontFamily: familySharp, fontPackage: package);"," static const IconData grid_view_sharp = IconData(0xe021, fontFamily: familySharp, fontPackage: package);"," static const IconData headphones_sharp = IconData(0xe022, fontFamily: familySharp, fontPackage: package);"," static const IconData jpg_attach_sharp = IconData(0xe023, fontFamily: familySharp, fontPackage: package);"," static const IconData keyboard_sharp = IconData(0xe024, fontFamily: familySharp, fontPackage: package);"," static const IconData laptop_sharp = IconData(0xe025, fontFamily: familySharp, fontPackage: package);"," static const IconData maintenance_sharp = IconData(0xe026, fontFamily: familySharp, fontPackage: package);"," static const IconData memory_sharp = IconData(0xe027, fontFamily: familySharp, fontPackage: package);"," static const IconData monitor_sharp = IconData(0xe028, fontFamily: familySharp, fontPackage: package);"," static const IconData open_new_off_sharp = IconData(0xe029, fontFamily: familySharp, fontPackage: package);"," static const IconData page_height_sharp = IconData(0xe02a, fontFamily: familySharp, fontPackage: package);"," static const IconData page_rotate_sharp = IconData(0xe02b, fontFamily: familySharp, fontPackage: package);"," static const IconData page_width_sharp = IconData(0xe02c, fontFamily: familySharp, fontPackage: package);"," static const IconData pdf_attach_sharp = IconData(0xe02d, fontFamily: familySharp, fontPackage: package);"," static const IconData phone_android_sharp = IconData(0xe02e, fontFamily: familySharp, fontPackage: package);"," static const IconData phone_iphone_sharp = IconData(0xe02f, fontFamily: familySharp, fontPackage: package);"," static const IconData phonelink_sharp = IconData(0xe030, fontFamily: familySharp, fontPackage: package);"," static const IconData png_attach_sharp = IconData(0xe031, fontFamily: familySharp, fontPackage: package);"," static const IconData ppt_attach_sharp = IconData(0xe032, fontFamily: familySharp, fontPackage: package);"," static const IconData printer_sharp = IconData(0xe033, fontFamily: familySharp, fontPackage: package);"," static const IconData publish_sharp = IconData(0xe034, fontFamily: familySharp, fontPackage: package);"," static const IconData push_pin_sharp = IconData(0xe035, fontFamily: familySharp, fontPackage: package);"," static const IconData redo_sharp = IconData(0xe036, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_box_sharp = IconData(0xe037, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_circle_outline_sharp = IconData(0xe038, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_circle_sharp = IconData(0xe039, fontFamily: familySharp, fontPackage: package);"," static const IconData remove_sharp = IconData(0xe03a, fontFamily: familySharp, fontPackage: package);"," static const IconData reply_sharp = IconData(0xe03b, fontFamily: familySharp, fontPackage: package);"," static const IconData save_alt_sharp = IconData(0xe03c, fontFamily: familySharp, fontPackage: package);"," static const IconData save_file_sharp = IconData(0xe03d, fontFamily: familySharp, fontPackage: package);"," static const IconData save_sharp = IconData(0xe03e, fontFamily: familySharp, fontPackage: package);"," static const IconData scanner_sharp = IconData(0xe03f, fontFamily: familySharp, fontPackage: package);"," static const IconData security_sharp = IconData(0xe040, fontFamily: familySharp, fontPackage: package);"," static const IconData send_sharp = IconData(0xe041, fontFamily: familySharp, fontPackage: package);"," static const IconData shared_folder_sharp = IconData(0xe042, fontFamily: familySharp, fontPackage: package);"," static const IconData smart_phone_sharp = IconData(0xe043, fontFamily: familySharp, fontPackage: package);"," static const IconData sort_sharp = IconData(0xe044, fontFamily: familySharp, fontPackage: package);"," static const IconData speaker_sharp = IconData(0xe045, fontFamily: familySharp, fontPackage: package);"," static const IconData tablet_mac_sharp = IconData(0xe046, fontFamily: familySharp, fontPackage: package);"," static const IconData tablet_sharp = IconData(0xe047, fontFamily: familySharp, fontPackage: package);"," static const IconData tv_sharp = IconData(0xe048, fontFamily: familySharp, fontPackage: package);"," static const IconData undo_sharp = IconData(0xe049, fontFamily: familySharp, fontPackage: package);"," static const IconData upload_file_sharp = IconData(0xe04a, fontFamily: familySharp, fontPackage: package);"," static const IconData video_play_sharp = IconData(0xe04b, fontFamily: familySharp, fontPackage: package);"," static const IconData watch_sharp = IconData(0xe04c, fontFamily: familySharp, fontPackage: package);"],"iconNames":["add_box","add_circle_outline","add_circle","add","android","backspace","block","cast_connected","cast","chart_pie","cloud_done","cloud_download","cloud_off","cloud_outline","cloud","cloud_upload","content","copy_file","create_new_folder","desktop","device_settings","devices_ecosystem","doc_attach","downloading","email_outline","email","file","finished_download","flag","folder_file","folder_outline","folder","grid_view","headphones","jpg_attach","keyboard","laptop","maintenance","memory","monitor","open_new_off","page_height","page_rotate","page_width","pdf_attach","phone_android","phone_iphone","phonelink","png_attach","ppt_attach","printer","publish","push_pin","redo","remove_box","remove_circle_outline","remove_circle","remove","reply","save_alt","save_file","save","scanner","security","send","shared_folder","smart_phone","sort","speaker","tablet_mac","tablet","tv","undo","upload_file","video_play","watch"]} \ No newline at end of file diff --git a/test/data/iconNodes.json b/test/data/iconNodes.json index dae4b283..93adff4c 100644 --- a/test/data/iconNodes.json +++ b/test/data/iconNodes.json @@ -1 +1 @@ -[{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}] \ No newline at end of file +[{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}] \ No newline at end of file diff --git a/test/data/iconsPage.json b/test/data/iconsPage.json index 20b13c28..d93ac714 100644 --- a/test/data/iconsPage.json +++ b/test/data/iconsPage.json @@ -1 +1 @@ -{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"SUBTRACT","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"booleanOperation":"UNION","absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"}} \ No newline at end of file +{"id":"156:1674","name":"Icons","type":"CANVAS","scrollBehavior":"SCROLLS","children":[{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:5836","name":"Hard ware","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5837","name":"Hardware","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-352,"width":109,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":-344.760009765625,"width":104.982421875,"height":18.048004150390625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Hardware","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5838","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5839","name":"Scanner","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5840","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5841","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5842","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1119,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5843","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5844","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5845","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-1079,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5846","name":"Printer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5847","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5848","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-959,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5850","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5851","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5852","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":-93,"width":20,"height":18},"absoluteRenderBounds":{"x":-919,"y":-93,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5853","name":"Cast","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5854","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5855","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2080,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5857","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5858","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5859","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-2040,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5860","name":"Cast Connected","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5861","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5862","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1920,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1920,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5864","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5865","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5866","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1880,"y":27,"width":22,"height":18},"absoluteRenderBounds":{"x":-1880,"y":27,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5867","name":"Desktop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5868","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5869","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5870","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-637,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-637,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-638,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-638,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5871","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5872","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5873","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-597,"y":-214,"width":22,"height":20},"absoluteRenderBounds":{"x":-597,"y":-214,"width":22,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-598,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-598,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-662,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-662,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5874","name":"Devices Ecosystem","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5875","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5876","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5877","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2080,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2080,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5878","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5879","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5880","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2040,"y":-92,"width":22,"height":16},"absoluteRenderBounds":{"x":-2040,"y":-92,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5881","name":"Device Settings","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5882","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5883","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5884","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.81494140625,"y":-95,"width":17.81491470336914,"height":22},"absoluteRenderBounds":{"x":-1917.81494140625,"y":-95,"width":17.81494140625,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5885","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5886","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5887","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.97021484375,"y":-95,"width":17.969999313354492,"height":22},"absoluteRenderBounds":{"x":-1877.97021484375,"y":-95,"width":17.969970703125,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5888","name":"Headphones","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5889","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5890","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5891","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5892","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5893","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5894","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":27,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":27,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":24,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":24,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":0,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":0,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5895","name":"Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5896","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5897","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5898","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1599,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5899","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5900","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5901","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":-91,"width":20,"height":14},"absoluteRenderBounds":{"x":-1559,"y":-91,"width":20,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5902","name":"Laptop","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5903","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5904","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5905","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1601,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5906","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5907","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5908","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1561,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5909","name":"Memory","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5910","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5911","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5912","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1758,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5913","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5914","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5915","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1718,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":-1718,"y":-93,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5916","name":"Monitor","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5917","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5918","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5919","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-213,"width":19.990081787109375,"height":18},"absoluteRenderBounds":{"x":-799,"y":-213,"width":19.9901123046875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5920","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5921","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5922","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-213,"width":20,"height":18},"absoluteRenderBounds":{"x":-759,"y":-213,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5923","name":"Phone Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5924","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5925","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5926","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2076,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5927","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5928","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5929","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-2036,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5930","name":"Phone iPhone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5931","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5932","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5933","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1916,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5934","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5935","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5936","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876,"y":-215,"width":13,"height":22},"absoluteRenderBounds":{"x":-1876,"y":-215,"width":13,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5937","name":"Phonelink","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5938","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5939","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5940","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1441,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5941","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5942","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5943","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":-1401,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5944","name":"Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5945","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5946","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5947","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"absoluteRenderBounds":{"x":-638,"y":-94.8125,"width":18,"height":21.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5948","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5949","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5950","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-598,"y":-95,"width":18,"height":22},"absoluteRenderBounds":{"x":-598,"y":-95,"width":18,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5951","name":"Video Play","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5952","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5953","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5954","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-799,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5955","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5956","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5957","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":-759,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5958","name":"Smart Phone","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5959","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5960","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5961","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1756,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1756,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5962","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5963","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5964","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":-215,"width":14,"height":22},"absoluteRenderBounds":{"x":-1716,"y":-215,"width":14,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5965","name":"Speaker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5966","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5967","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5968","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":-94,"width":14,"height":20},"absoluteRenderBounds":{"x":-1276,"y":-94,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5969","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5970","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5971","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":-94,"width":14,"height":19.989999771118164},"absoluteRenderBounds":{"x":-1236,"y":-94,"width":14,"height":19.98999786376953},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5972","name":"Tablet","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5973","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5974","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5975","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1280,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1280,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5976","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5977","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5978","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1240,"y":-212,"width":22,"height":16},"absoluteRenderBounds":{"x":-1240,"y":-212,"width":22,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5979","name":"Tablet Mac","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5980","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5981","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5982","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1119,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5983","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5984","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5985","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":-216,"width":19,"height":24},"absoluteRenderBounds":{"x":-1079,"y":-216,"width":19,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5986","name":"TV","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5987","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5988","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5989","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-960,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-960,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5990","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5991","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5992","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-920,"y":-213,"width":22,"height":18},"absoluteRenderBounds":{"x":-920,"y":-213,"width":22,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5993","name":"Watch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5994","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5995","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5996","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1437,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5997","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5998","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5999","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397,"y":-96,"width":16,"height":24},"absoluteRenderBounds":{"x":-1397,"y":-96,"width":16,"height":24},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":false,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"176:6000","name":"File","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6001","name":"File","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-352,"width":41,"height":32},"absoluteRenderBounds":{"x":1842.06396484375,"y":-344.8559875488281,"width":37.130859375,"height":18.14398193359375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"File","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:6002","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1840,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":1840,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:6003","name":"Finished Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6004","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6005","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6006","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.4350004196167},"absoluteRenderBounds":{"x":1864,"y":-211.43499755859375,"width":14,"height":15.43499755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6007","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6008","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6009","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-212,"width":14,"height":16},"absoluteRenderBounds":{"x":1904,"y":-212,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1899,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":1899,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1835,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1835,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6010","name":"Downloading","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6011","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6012","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6013","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2021,"y":-213.7744140625,"width":19.77721405029297,"height":19.558454513549805},"absoluteRenderBounds":{"x":2021,"y":-213.7744140625,"width":19.7772216796875,"height":19.558456420898438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6014","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6015","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6016","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2061,"y":-213.9499969482422,"width":19.950000762939453,"height":19.900001525878906},"absoluteRenderBounds":{"x":2061,"y":-213.9499969482422,"width":19.949951171875,"height":19.900009155273438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2059,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2059,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1995,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":1995,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6017","name":"Cloud","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6018","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6019","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6020","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2179,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2179,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2179,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2179,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6021","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6022","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6023","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2219,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2219,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2219,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2219,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2155,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2155,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6024","name":"Cloud Done","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6025","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6026","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6027","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2499,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2499,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2499,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2499,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6028","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6029","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6030","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2539,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2539,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2539,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2539,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2475,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2475,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6031","name":"Cloud Download","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6032","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6033","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6034","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2659,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2659,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2659,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2659,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6035","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6036","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6037","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2699,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2699,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2699,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2699,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2635,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2635,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6038","name":"Cloud Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6039","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6040","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6041","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2339,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2339,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2339,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2339,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6042","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6043","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6044","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2379,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2379,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2379,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2379,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2315,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2315,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6045","name":"Cloud Upload","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6046","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6047","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6048","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2819,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2819,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2819,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2819,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6049","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6050","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6051","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2859,"y":-212,"width":24,"height":16},"absoluteRenderBounds":{"x":2859,"y":-212,"width":24,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2859,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2859,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2795,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2795,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6052","name":"Cloud Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6053","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6054","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6055","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2979.002685546875,"y":-212,"width":23.997297286987305,"height":17.582500457763672},"absoluteRenderBounds":{"x":2979.002685546875,"y":-212,"width":23.997314453125,"height":17.582504272460938},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2979,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":2979,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6056","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6057","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6058","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"absoluteRenderBounds":{"x":3019,"y":-212.13999938964844,"width":24,"height":18.139999389648438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3019,"y":-216,"width":24,"height":24},"absoluteRenderBounds":{"x":3019,"y":-216,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2955,"y":-240,"width":112,"height":72},"absoluteRenderBounds":{"x":2955,"y":-240,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6059","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6060","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6061","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6062","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1866,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1866,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6063","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6064","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6065","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1906,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":1906,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1904,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":1840,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6066","name":"Create New Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6067","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6068","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6069","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2186,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2186,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6070","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6071","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6072","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2226,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2226,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2224,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2224,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2160,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2160,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6073","name":"Folder Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6074","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6075","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6076","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2026,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2026,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6077","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6078","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6079","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2066,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2066,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2064,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2064,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2000,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2000,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6080","name":"Shared Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6081","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6082","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6083","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2346,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2346,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6084","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6085","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6086","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2386,"y":-92,"width":20,"height":16},"absoluteRenderBounds":{"x":2386,"y":-92,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2384,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2384,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2320,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2320,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6087","name":"Grid View","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6088","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6089","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6090","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6091","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6092","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6093","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6094","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2517,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2507,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6095","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6096","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6097","name":"Vector","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"176:6098","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6099","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2547,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-93,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6101","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2557,"y":-83,"width":8,"height":8},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2547,"y":-93,"width":18,"height":18},"absoluteRenderBounds":{"x":2547,"y":-93,"width":18,"height":18},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2544,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2544,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2480,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2480,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6102","name":"Upload File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6103","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6104","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6105","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2668,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2668,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2664,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2664,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6106","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6107","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6108","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2708,"y":-94,"width":16,"height":20},"absoluteRenderBounds":{"x":2708,"y":-94,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2704,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2704,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2640,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2640,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6109","name":"JPG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6110","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6111","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6112","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2825,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2825,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6113","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2827.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2824,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2824,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6114","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6115","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6116","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6117","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2865,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2865,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6118","name":"JPG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662187576293945,"height":7.220000267028809},"absoluteRenderBounds":{"x":2867.5859375,"y":-84.0999984741211,"width":16.662109375,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2864,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2864,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2800,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2800,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6119","name":"PDF Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6120","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6121","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6122","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3145,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3145,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6123","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3147.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3144,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3144,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6124","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6125","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6126","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6127","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3185,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3185,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6128","name":"PDF","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.262189865112305,"height":6.980000019073486},"absoluteRenderBounds":{"x":3187.9658203125,"y":-83.9800033569336,"width":16.26220703125,"height":6.980003356933594},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3184,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3184,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3120,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3120,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6129","name":"PNG Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6131","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2985,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":2985,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6133","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":2987.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2984,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":2984,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6134","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6135","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6136","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6137","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3025,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3025,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6138","name":"PNG","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.282188415527344,"height":7.220000267028809},"absoluteRenderBounds":{"x":3027.9658203125,"y":-84.0999984741211,"width":16.2822265625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3024,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3024,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2960,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":2960,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6139","name":"DOC Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6140","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6141","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-95,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6143","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3307.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6144","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6145","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6147","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-93,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-95,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-95,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6148","name":"DOC","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.58218765258789,"height":7.220000267028809},"absoluteRenderBounds":{"x":3347.845947265625,"y":-84.0999984741211,"width":16.582275390625,"height":7.220001220703125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-96,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-96,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-120,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-120,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6149","name":"PPT Attach","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6150","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6151","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6152","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3305,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3305,"y":-214,"width":22,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6153","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3307.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3304,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3304,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6155","name":"Subtract","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"SUBTRACT","children":[{"id":"176:6156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:6157","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347,"y":-212,"width":18,"height":18},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3345,"y":-214,"width":22,"height":22},"absoluteRenderBounds":{"x":3345,"y":-214,"width":22,"height":22},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"176:6158","name":"PPT","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59218978881836,"height":6.980000019073486},"absoluteRenderBounds":{"x":3347.9658203125,"y":-202.97999572753906,"width":16.59228515625,"height":6.9799957275390625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3344,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":3344,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3280,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":3280,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:6159","name":"Open New Off","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6160","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6161","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1861.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1861.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1860,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1860,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6162","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1905.389892578125,"y":142.81005859375,"width":19.790000915527344,"height":19.80000114440918},"absoluteRenderBounds":{"x":1905.8028564453125,"y":143.00006103515625,"width":19.197021484375,"height":19.192001342773438},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1904,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":1904,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1840,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":1840,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6164","name":"Page Height","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6166","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2024,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2024,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2021,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2021,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6167","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6168","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2068,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2068,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2065,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2065,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2001,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2001,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6169","name":"Page Width","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6170","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6171","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2185,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2185,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2182,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2182,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6172","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6173","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2229,"y":144,"width":18,"height":18},"absoluteRenderBounds":{"x":2229,"y":144,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2226,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2226,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2162,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2162,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6174","name":"Page Rotate","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6175","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6176","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2344,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2344.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2343,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2343,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6177","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6178","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2388,"y":141,"width":21,"height":21},"absoluteRenderBounds":{"x":2388.414306640625,"y":141.3221893310547,"width":20.585693359375,"height":20.677810668945312},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":0.02500000037252903,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2387,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2387,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2323,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2323,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6179","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6180","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2507,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2507,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2504,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2504,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6183","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2551,"y":143,"width":18,"height":18},"absoluteRenderBounds":{"x":2551,"y":143,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2548,"y":140,"width":24,"height":24},"absoluteRenderBounds":{"x":2548,"y":140,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2484,"y":120,"width":108,"height":64},"absoluteRenderBounds":{"x":2484,"y":120,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6184","name":"Publish","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6185","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6186","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2670,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2670,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2665,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2665,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6187","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6188","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2714,"y":147,"width":14,"height":16},"absoluteRenderBounds":{"x":2714,"y":147,"width":14,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2709,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2709,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2645,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2645,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6189","name":"File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6190","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2830,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2830,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2826,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2826,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6192","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6193","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2874,"y":143,"width":16,"height":20},"absoluteRenderBounds":{"x":2874,"y":143,"width":16,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":2870,"y":141,"width":24,"height":24},"absoluteRenderBounds":{"x":2870,"y":141,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2806,"y":121,"width":108,"height":64},"absoluteRenderBounds":{"x":2806,"y":121,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6194","name":"Folder","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6195","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":2989,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":2989,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2987,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":2987,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6197","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3033,"y":147,"width":20,"height":15.294116973876953},"absoluteRenderBounds":{"x":3033,"y":147,"width":20,"height":15.294113159179688},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3031,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3031,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":2967,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":2967,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:6199","name":"Maintenance","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:6200","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6201","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3150,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3150.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3148,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3148,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:6202","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:6203","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":3194,"y":146,"width":19.800125122070312,"height":18.555572509765625},"absoluteRenderBounds":{"x":3194.103515625,"y":146,"width":19.0751953125,"height":17.93426513671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null,"4":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":3192,"y":143,"width":24,"height":24},"absoluteRenderBounds":{"x":3192,"y":143,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":3128,"y":123,"width":108,"height":64},"absoluteRenderBounds":{"x":3128,"y":123,"width":108,"height":64},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":20,"counterAxisAlignItems":"CENTER","primaryAxisAlignItems":"CENTER","paddingLeft":20,"paddingRight":20,"paddingTop":20,"paddingBottom":20,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1744,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":1744,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1327:2","name":"DNA","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:3","name":"DNA","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1076,"width":50,"height":32},"absoluteRenderBounds":{"x":-2102.93603515625,"y":1084.248046875,"width":46.811767578125,"height":16.751953125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"DNA","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1327:4","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2105,"y":1123,"width":1552,"height":1},"absoluteRenderBounds":{"x":-2105,"y":1123,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"1327:5","name":"Life Guard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:6","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:7","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:8","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:9","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:10","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:11","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2078,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2078,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:12","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:13","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:14","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:15","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.9609375,"y":1219.8277587890625,"width":0.5835938453674316,"height":0.5835935473442078},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:16","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:17","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.124267578125,"y":1219.8284912109375,"width":0.5835942625999451,"height":0.5835936665534973},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2038,"y":1214,"width":17.5,"height":20},"absoluteRenderBounds":{"x":-2038,"y":1214,"width":17.5,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:18","name":"Mobility DNA","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:19","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:20","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:21","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1914,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:22","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:23","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:24","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874,"y":1214,"width":10,"height":20},"absoluteRenderBounds":{"x":-1874,"y":1214,"width":10,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:25","name":"TekSpeech Pro","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:26","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:27","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:28","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1759,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:29","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:30","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:31","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1719,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:32","name":"Enterprise Browser","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:33","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:34","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:35","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:36","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:37","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:38","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:39","name":"AppGallery","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:40","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:41","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:42","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1439,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:43","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:44","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:45","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1216,"width":20,"height":16},"absoluteRenderBounds":{"x":-1399,"y":1216,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:46","name":"Workforce Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:47","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:48","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:49","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1279,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:50","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:51","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:52","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1215,"width":20,"height":18},"absoluteRenderBounds":{"x":-1239,"y":1215,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:53","name":"SimulScan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:54","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:55","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:56","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:57","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:58","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:59","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:60","name":"Power Precision","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:61","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:62","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:63","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:64","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:65","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:66","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:67","name":"Power Precision +","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:68","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:69","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:70","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:71","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:72","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:73","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1214,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:74","name":"Mobility Security","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:75","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:76","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:77","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:78","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:79","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:80","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1214,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1214,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1212,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1212,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1188,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1188,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:81","name":"StageNow","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:82","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:83","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:84","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:85","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:86","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.714111328125,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:87","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2076,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2076,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2076,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:88","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:89","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:90","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:91","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1574,"width":10.623966217041016,"height":4.935070514678955},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:92","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.7142333984375,"y":1589.0653076171875,"width":10.623966217041016,"height":4.9346699714660645},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:93","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2036,"y":1577.1231689453125,"width":13.195594787597656,"height":13.748662948608398},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2036,"y":1574,"width":13.195594787597656,"height":20},"absoluteRenderBounds":{"x":-2036,"y":1574,"width":13.195556640625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:94","name":"EMDK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:95","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:96","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:97","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:98","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:99","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:100","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1574,"width":19.99530601501465,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1574,"width":19.995361328125,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:101","name":"Enterprise Keyboard","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:102","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:103","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:104","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1759,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:105","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:106","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:107","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1574,"width":20,"height":20.001182556152344},"absoluteRenderBounds":{"x":-1719,"y":1574,"width":20,"height":20.001220703125},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:108","name":"MDM Toolkit","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:109","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:110","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:111","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1595,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:112","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:113","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:114","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555,"y":1574,"width":11.249994277954102,"height":20},"absoluteRenderBounds":{"x":-1555,"y":1574,"width":11.25,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:115","name":"MX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:116","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:117","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:118","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:119","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:120","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:121","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1574,"width":19.99904441833496,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1574,"width":19.9990234375,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:122","name":"RX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:123","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:124","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:125","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1276,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1276,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:126","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:127","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:128","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1236,"y":1574,"width":14.58672046661377,"height":20},"absoluteRenderBounds":{"x":-1236,"y":1574,"width":14.586669921875,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:129","name":"Setting Tool","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:130","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:131","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:132","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:133","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:134","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:135","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1574,"width":19.19721031188965,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1574,"width":19.197265625,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:136","name":"Data Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:137","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:138","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:139","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[{"suffix":"","format":"PNG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"1327:140","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:141","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:142","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:143","name":"Application Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:144","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:145","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:146","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2079,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:147","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:148","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:149","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1815,"width":20,"height":18},"absoluteRenderBounds":{"x":-2039,"y":1815,"width":20,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:150","name":"Swipe Assist","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:151","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:152","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:153","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1915,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1915,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:154","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:155","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:156","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1875,"y":1814,"width":12,"height":20},"absoluteRenderBounds":{"x":-1875,"y":1814,"width":12,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:157","name":"SmartDEX","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:158","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:159","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:160","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1759,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:161","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:162","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:163","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1820,"width":20,"height":9},"absoluteRenderBounds":{"x":-1719,"y":1820,"width":20,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:164","name":"Direct Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:165","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:166","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:167","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:168","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:169","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:170","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:171","name":"Remote Control","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:172","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:173","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:174","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:175","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:176","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:177","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:178","name":"Asset Tracker Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:179","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:180","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:181","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:182","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:183","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:184","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:185","name":"Voice Wedge","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:186","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:187","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:188","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:189","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1110.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:190","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1114,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:191","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:192","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1103.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1119,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:193","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:194","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:195","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:196","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1070.25,"y":1814,"width":7.500085830688477,"height":13.125149726867676},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:197","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1074,"y":1823.375,"width":15.000171661376953,"height":10.625121116638184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:198","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1814,"width":9.687610626220703,"height":20.000226974487305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:199","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1063.6875,"y":1831.379150390625,"width":4.687553405761719,"height":2.6203453540802},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1814,"width":20.000171661376953,"height":20.000226974487305},"absoluteRenderBounds":{"x":-1079,"y":1814,"width":20.0001220703125,"height":20.000244140625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:200","name":"Device Tracker","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:201","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:202","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:203","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:204","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:205","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-954,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-954,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:206","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:207","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:208","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:209","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.75,"y":1819,"width":7.5,"height":10},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:210","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-914,"y":1814,"width":10,"height":20},"absoluteRenderBounds":{"x":-914,"y":1814,"width":10,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:211","name":"WorryFree Wi-Fi","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:212","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:213","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:214","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-798,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-798,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:215","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:216","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:217","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-758,"y":1814,"width":18,"height":20},"absoluteRenderBounds":{"x":-758,"y":1814,"width":18,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:218","name":"Workstation Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:219","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:220","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:221","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:222","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:223","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-947.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:224","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-952.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:225","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:226","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-948.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:227","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:228","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-953.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:229","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-946.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-959,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-959,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:230","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:231","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:232","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:233","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-907.5438232421875,"y":1462.13623046875,"width":0.7042980790138245,"height":2.0504252910614014},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:234","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-912.185302734375,"y":1457.57275390625,"width":4.245309352874756,"height":8.236653327941895},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:235","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.9564208984375,"y":1460.68212890625,"width":0.7074213624000549,"height":3.499340772628784},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:236","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-908.2491455078125,"y":1461.4111328125,"width":1.7128945589065552,"height":0.7240580320358276},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:237","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.480224609375,"y":1458.89794921875,"width":2.414055109024048,"height":4.7811079025268555},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:238","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-913.467041015625,"y":1462.189453125,"width":4.5148420333862305,"height":5.668302059173584},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:239","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-906.83740234375,"y":1463.27099609375,"width":2.3175811767578125,"height":2.109489679336548},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-919,"y":1455,"width":20,"height":18.000978469848633},"absoluteRenderBounds":{"x":-919,"y":1455,"width":20,"height":18.0009765625},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:240","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:241","name":"OEM Config","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:242","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:243","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:244","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:245","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:246","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:247","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:248","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-799,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:249","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:250","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:251","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:252","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.900390625,"y":1463.375,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:253","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.150390625,"y":1459.625,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:254","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.025390625,"y":1467.125,"width":1.25,"height":1.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:255","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1454,"width":19.198436737060547,"height":20},"absoluteRenderBounds":{"x":-759,"y":1454,"width":19.19842529296875,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:256","name":"GMS Restricted Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:257","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:258","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:259","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:260","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:261","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:262","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:263","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-635.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-635.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:264","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:265","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:266","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:267","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.250018119812,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:268","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8754942417145,"y":1459,"width":3.7500059604644775,"height":3.728128671646118},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:269","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.7869157791138,"y":1460.875,"width":1.1960954666137695,"height":3.286722183227539},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:270","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.3753671646118,"y":1463.74853515625,"width":3.5657968521118164,"height":3.9082300662994385},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-595.25,"y":1454,"width":11.250018119812012,"height":20.000030517578125},"absoluteRenderBounds":{"x":-595.25,"y":1454,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:271","name":"Zero Touch","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:272","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:273","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:274","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:275","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:276","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-793.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:277","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-791.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-795.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-795.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:278","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:279","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:280","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:281","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.2500200271606,"y":1574,"width":11.250020027160645,"height":20.000030517578125},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:282","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-753.3750128746033,"y":1580.25,"width":7.5000128746032715,"height":7.500012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:283","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":3.141592653589793,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-751.500006198883,"y":1582.125,"width":3.7500061988830566,"height":3.7500061988830566},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-755.25,"y":1574,"width":11.250020980834961,"height":20.000030517578125},"absoluteRenderBounds":{"x":-755.25,"y":1574,"width":11.25,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:284","name":"Smart TEK","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:285","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:286","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:287","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:288","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:289","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:290","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:291","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:292","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:293","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:294","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:295","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:296","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:297","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:298","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2073.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:299","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:300","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2075,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2075,"y":1334,"width":12.5,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:301","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:302","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:303","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:304","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.50048828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:305","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.87548828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:306","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.25048828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:307","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.62548828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:308","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.00048828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:309","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1340.25,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:310","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1340.875,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:311","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.87548828125,"y":1341.5,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:312","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.50048828125,"y":1342.125,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:313","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.12548828125,"y":1342.75,"width":0.6250007748603821,"height":0.6250007748603821},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:314","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.75,"y":1337.75,"width":8.75001049041748,"height":10.000012397766113},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:315","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035,"y":1334,"width":11.25001335144043,"height":20.000024795532227},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:316","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.251220703125,"y":1345.249755859375,"width":8.751330375671387,"height":8.749228477478027},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2035,"y":1334,"width":12.500110626220703,"height":20.000024795532227},"absoluteRenderBounds":{"x":-2035,"y":1334,"width":12.5001220703125,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:317","name":"OCR","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:318","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:319","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:320","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:321","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:322","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:323","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:324","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:325","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1904,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:326","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:327","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1911.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:328","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:329","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:330","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:331","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.125,"y":1340.874755859375,"width":5,"height":6.25098991394043},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:332","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:333","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:334","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1349,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:335","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1864,"y":1334,"width":5,"height":5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:336","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.875,"y":1340.875,"width":5,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:337","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1871.5,"y":1340.875,"width":5.001170635223389,"height":6.2531232833862305},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1334,"width":20,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:338","name":"Smart TE","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:339","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:340","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:341","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:342","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:343","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:344","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:345","name":"Smart TE Lite","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:346","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:347","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:348","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:349","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1589.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:350","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:351","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1597.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:352","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:353","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1588.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:354","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:355","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:356","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1587.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:357","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1598.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:358","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1595.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:359","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1594.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:360","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1592.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1599,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1599,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:361","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:362","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:363","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:364","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1549.625,"y":1337.75,"width":10.624919891357422,"height":13.749894142150879},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:365","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1334,"width":10.624918937683105,"height":11.874909400939941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:366","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1557.125,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:367","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1339.625,"width":6.8749470710754395,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:368","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1548.0625,"y":1344.625,"width":7.187746524810791,"height":9.375083923339844},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:369","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1335.875,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:370","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.75,"y":1340.25,"width":0.624995231628418,"height":1.8749855756759644},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:371","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1547.75,"y":1343.375,"width":6.874948978424072,"height":3.7499711513519287},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:372","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1558.375,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:373","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1555.875,"y":1348.375,"width":0.624995231628418,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:374","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1554.625,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:375","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1552.125,"y":1348.375,"width":1.8749855756759644,"height":3.12497615814209},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1559,"y":1334,"width":19.999919891357422,"height":20.000085830688477},"absoluteRenderBounds":{"x":-1559,"y":1334,"width":19.9998779296875,"height":20.0001220703125},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:376","name":"PRZM","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:377","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:378","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:379","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:380","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:381","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:382","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1421.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:383","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1423.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:384","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:385","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1420.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:386","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:387","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1424.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:388","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:389","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1436.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1439,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:390","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:391","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:392","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:393","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.009765625,"y":1341.916748046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:394","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1338.229248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:395","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1381.177001953125,"y":1345.604248046875,"width":1.84375,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:396","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1383.020751953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:397","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1338.2275390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:398","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1380.5625,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:399","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.770751953125,"y":1337,"width":17.20833396911621,"height":14.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:400","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1384.864501953125,"y":1341.9150390625,"width":1.2291666269302368,"height":3.0729167461395264},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:401","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1338.2275390625,"width":1.84375,"height":10.447916984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:402","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1396.541748046875,"y":1338.2275390625,"width":1.2291666269302368,"height":8.604166984558105},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"absoluteRenderBounds":{"x":-1399,"y":1337,"width":19.666748046875,"height":14.75},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:403","name":"Multi Code Data Formatting","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:404","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:405","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:406","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1279,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:407","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:408","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:409","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-1239,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:410","name":"Remote Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:411","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:412","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:413","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1119,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:414","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:415","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:416","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1337,"width":20,"height":15},"absoluteRenderBounds":{"x":-1079,"y":1337,"width":20,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:417","name":"Preferred Symbol","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:418","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:419","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:420","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:421","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:422","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1334,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1334,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:423","name":"Rectangle 59","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:424","name":"Wi-Fi Friendly Mode","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:425","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:426","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:427","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:428","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:429","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:430","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-788.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:431","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-786.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:432","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-785.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:433","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-799,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:434","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:435","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:436","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:437","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1338.062255859375,"width":10.624809265136719,"height":15.937383651733398},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:438","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.606689453125,"y":1334,"width":10.606511116027832,"height":2.9037177562713623},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:439","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-748.192626953125,"y":1335.999755859375,"width":7.778423309326172,"height":2.317925453186035},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:440","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-746.7783203125,"y":1338.001220703125,"width":4.949553489685059,"height":1.7324573993682861},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:441","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-745.362548828125,"y":1339.999755859375,"width":2.1214613914489746,"height":1.4999496936798096},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:442","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.128662109375,"y":1341.501220703125,"width":6.589376926422119,"height":12.498678207397461},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1334,"width":19.999820709228516,"height":19.99989891052246},"absoluteRenderBounds":{"x":-759,"y":1334,"width":19.99981689453125,"height":19.9998779296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:443","name":"Intelligent Document Capture","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:444","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:445","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:446","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:447","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:448","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:449","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:450","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:451","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:452","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-628.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:453","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-630.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:454","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-631.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:455","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:456","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-639,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:457","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:458","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:459","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:460","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:461","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1348.591064453125,"width":4.999998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:462","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1347.331787109375,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:463","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1346.072509765625,"width":6.249998569488525,"height":0.6296296119689941},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:464","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.1251220703125,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:465","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-588.687744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":2.5185184478759766},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:466","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-590.8751220703125,"y":1342.294677734375,"width":0.6249998211860657,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:467","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-591.4998779296875,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:468","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.3125,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:469","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.937744140625,"y":1342.294677734375,"width":0.31249991059303284,"height":1.888888955116272},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1336,"width":20,"height":17},"absoluteRenderBounds":{"x":-599,"y":1336,"width":20,"height":17},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1332,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1332,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1308,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1308,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:470","name":"123Scan","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:471","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:472","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:473","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:474","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2074,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:475","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:476","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:477","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2068.999755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:478","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2063.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:479","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2063.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2063.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:480","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2064.625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:481","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:482","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2066.5,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:483","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2067.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:484","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2066.5,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:485","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2064.625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2064.625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:486","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:487","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2072.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:488","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:489","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:490","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2062.125244140625,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:491","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2070.874755859375,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:492","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2077.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:493","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2077.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2077.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:494","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2075.24951171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:495","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2079,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:496","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2074.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:497","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2071.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:498","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2066.753662109375,"y":1707.855224609375,"width":3.380615234375,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:499","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:500","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:501","name":"Group 13","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:502","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:503","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2033.9998779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:504","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:505","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:506","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2028.9998779296875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:507","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2023.375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:508","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2023.375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2023.375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:509","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:510","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:511","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:512","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2027.749755859375,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:513","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2026.5001220703125,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:514","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2024.6251220703125,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:515","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:516","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2032.12451171875,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:517","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1695,"width":0.625,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:518","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:519","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2022.1253662109375,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:520","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2030.8748779296875,"y":1701.427490234375,"width":1.25,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:521","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99854564666748},"absoluteRenderBounds":{"x":-2037.125,"y":1701.427490234375,"width":1.25,"height":8.99853515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:522","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2037.125,"y":1695,"width":1.25,"height":4.49927282333374},"absoluteRenderBounds":{"x":-2037.125,"y":1695,"width":1.25,"height":4.499267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:523","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2035.2496337890625,"y":1701.427490234375,"width":0.625,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:524","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427532434463501},"absoluteRenderBounds":{"x":-2039,"y":1700.1419677734375,"width":20,"height":0.6427001953125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:525","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.1738433837890625,"height":5.142025947570801},"absoluteRenderBounds":{"x":-2034.624755859375,"y":1707.85498046875,"width":2.173828125,"height":5.1419677734375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:526","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.4789557456970215,"height":5.142372131347656},"absoluteRenderBounds":{"x":-2031.170166015625,"y":1707.8564453125,"width":3.47900390625,"height":5.142333984375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:527","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.380509614944458,"height":5.144669532775879},"absoluteRenderBounds":{"x":-2026.753662109375,"y":1707.855224609375,"width":3.3804931640625,"height":5.1446533203125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1695,"width":20,"height":17.999980926513672},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:528","name":"Rectangle 62","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:529","name":"Scan To Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:530","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:531","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:532","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:533","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:534","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1907.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:535","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:536","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1913.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:537","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1917.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:538","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1910.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:539","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:540","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:541","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:542","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1702.4375,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:543","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1867.437744140625,"y":1699,"width":5.625000953674316,"height":6.5625},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:544","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1702.75,"width":8.437766075134277,"height":11.249590873718262},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:545","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1873.84912109375,"y":1703.826904296875,"width":1.5121102333068848,"height":3.492222547531128},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:546","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1877.830078125,"y":1698.999755859375,"width":8.909172058105469,"height":3.515878438949585},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:547","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1870.250244140625,"y":1694,"width":11.250000953674316,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1694,"width":19.999755859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:548","name":"Scanner Control Application","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:549","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:550","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:551","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:552","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1709.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:553","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1708.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:554","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1711.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:555","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1716,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:556","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1712.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1716,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:557","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:558","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:559","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:560","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1751.827880859375,"y":1700.875,"width":6.803053855895996,"height":9.374948501586914},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:561","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1750.396728515625,"y":1701.771484375,"width":1.220703125,"height":2.9097986221313477},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:562","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1753.151123046875,"y":1697.75,"width":7.182915210723877,"height":2.9295897483825684},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:563","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1758,"y":1702.74853515625,"width":7.198437213897705,"height":7.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:564","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1754.71337890625,"y":1694,"width":11.25,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"absoluteRenderBounds":{"x":-1758,"y":1694,"width":14.53662109375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1763,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1763,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:565","name":"Scan Speed Analytics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:566","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:567","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:568","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:569","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:570","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:571","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-1559,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:572","name":"Remote Diagnostics","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:573","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:574","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:575","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1435.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:576","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1427.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:577","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1431.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:578","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1433.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:579","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1429.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:580","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1430.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:581","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:582","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1435.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:583","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:584","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:585","name":"Group 16","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:586","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.2497920989990234,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1395.2491455078125,"y":1701.8111572265625,"width":1.249755859375,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:587","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.2497920989990234,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1387.7503662109375,"y":1701.186279296875,"width":1.249755859375,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:588","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248960494995117,"height":5.936511993408203},"absoluteRenderBounds":{"x":-1391.8121337890625,"y":1699.3116455078125,"width":0.6248779296875,"height":5.9365234375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:589","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373440146446228,"height":4.68671989440918},"absoluteRenderBounds":{"x":-1393.3743896484375,"y":1700.5614013671875,"width":0.9373779296875,"height":4.686767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:590","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373440146446228,"height":2.8120319843292236},"absoluteRenderBounds":{"x":-1389.3126220703125,"y":1702.4361572265625,"width":0.9373779296875,"height":2.81201171875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:591","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248960494995117,"height":4.061824321746826},"absoluteRenderBounds":{"x":-1390.5623779296875,"y":1701.186279296875,"width":0.6248779296875,"height":4.061767578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:592","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:593","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76409912109375,"height":4.377254009246826},"absoluteRenderBounds":{"x":-1395.26416015625,"y":1696.4979248046875,"width":8.76416015625,"height":4.377197265625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1694,"width":19.99823570251465,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1694,"width":19.998291015625,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:594","name":"Rectangle 66","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:595","name":"123 RFID","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:596","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:597","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:598","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:599","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1274.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:600","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1271.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:601","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:602","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1275.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:603","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1279,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:604","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:605","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:606","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:607","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1234.625244140625,"y":1708.998779296875,"width":2.1736671924591064,"height":4.999594688415527},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:608","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1231.1728515625,"y":1708.99853515625,"width":3.478666305541992,"height":4.998336315155029},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:609","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.75927734375,"y":1708.9990234375,"width":3.380260705947876,"height":5.000991344451904},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:610","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1235.250244140625,"y":1697.749755859375,"width":12.498987197875977,"height":9.374239921569824},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:611","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":19.99837875366211},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1694,"width":19.99837875366211,"height":20.000015258789062},"absoluteRenderBounds":{"x":-1239,"y":1694,"width":19.9984130859375,"height":20},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:612","name":"Blood Bag Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:613","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:614","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:615","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:616","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:617","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:618","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:619","name":"Label Plus","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:620","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:621","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:622","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:623","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:624","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:625","name":"Rectangle 70","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:626","name":"Virtual Tether","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:627","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:628","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1919,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:629","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:630","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:631","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1879,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1879,"y":1934,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:632","name":"Rectangle 71","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:633","name":"Link OS","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:634","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:635","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:636","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:637","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:638","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:639","name":"Rectangle 72","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:640","name":"MDM Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:641","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:642","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1599,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:643","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:644","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:645","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1934,"width":20,"height":19.998435974121094},"absoluteRenderBounds":{"x":-1559,"y":1934,"width":20,"height":19.9984130859375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:646","name":"Rectangle 73","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:647","name":"Browser Print","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:648","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:649","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:650","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:651","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1435.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:652","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1430.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1439,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:653","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:654","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:655","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:656","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1934,"width":19.999998092651367,"height":20},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:657","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1395.25,"y":1939,"width":12.49999713897705,"height":12.5},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:658","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1390.875,"y":1943.375,"width":3.75,"height":3.75},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-1399,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:659","name":"Rectangle 74","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:660","name":"Cloud Connect","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:661","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:662","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1279,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:663","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:664","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1938,"width":20,"height":13},"absoluteRenderBounds":{"x":-1239,"y":1938,"width":20,"height":13},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:666","name":"Rectangle 75","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:667","name":"Virtual Devices","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:668","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:669","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:670","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:671","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1112.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1119,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:672","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:674","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:676","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1072.125,"y":1940.989501953125,"width":6.249995231628418,"height":6.25},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1936,"width":20,"height":16.228904724121094},"absoluteRenderBounds":{"x":-1079,"y":1936,"width":20,"height":16.2288818359375},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:677","name":"Rectangle 76","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:678","name":"Enterprise Connectors","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:679","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:680","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-959,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-959,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:681","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-961,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-961,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:682","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:683","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-919,"y":1934,"width":20,"height":20},"absoluteRenderBounds":{"x":-919,"y":1934,"width":20,"height":20},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:684","name":"Rectangle 77","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-921,"y":1932,"width":24,"height":24},"absoluteRenderBounds":{"x":-921,"y":1932,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-985,"y":1908,"width":112,"height":72},"absoluteRenderBounds":{"x":-985,"y":1908,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:685","name":"Pairing Solutions","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:686","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:687","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:688","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1115.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:690","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1108.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:691","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:692","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1109,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1113.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1119,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1119,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:694","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:695","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:696","name":"Union","type":"BOOLEAN_OPERATION","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","booleanOperation":"UNION","children":[{"id":"1327:697","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.7701416015625,"y":1702.862060546875,"width":1.8179469108581543,"height":1.8179564476013184},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:698","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1075.803955078125,"y":1694,"width":13.608590126037598,"height":13.609663963317871},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:699","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1068.541015625,"y":1702.8616943359375,"width":9.5413818359375,"height":11.138278007507324},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1700.3909912109375,"width":13.60860538482666,"height":13.608866691589355},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:701","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":-0.7853981633974483,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1069,"y":1703.5634010602753,"width":1.5746751856618175,"height":1.5746751856618175},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:702","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1073.069580078125,"y":1699.93115234375,"width":8.838375091552734,"height":10.206579208374023},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1079,"y":1694,"width":20.000316619873047,"height":19.999929428100586},"absoluteRenderBounds":{"x":-1079,"y":1694,"width":20.0003662109375,"height":19.9998779296875},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:703","name":"Rectangle 78","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:704","name":"Scan And Pair","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:706","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-799,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-799,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:708","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-781.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-781.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:709","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-792.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-795.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:711","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-787.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:712","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-789.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:713","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-784,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-784,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-795.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:715","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-790.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-799,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-799,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:716","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-801,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-801,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:717","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:718","name":"Group 19","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:719","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-759,"y":1694,"width":2.499999761581421,"height":15},"absoluteRenderBounds":{"x":-759,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:720","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-741.5,"y":1694,"width":2.5000009536743164,"height":15},"absoluteRenderBounds":{"x":-741.5,"y":1694,"width":2.5,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-752.125,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:722","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-755.25,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:723","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"absoluteRenderBounds":{"x":-747.125,"y":1694,"width":1.875,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-749.625,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:725","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-744,"y":1694,"width":1.25,"height":10.625},"absoluteRenderBounds":{"x":-744,"y":1694,"width":1.25,"height":10.625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:726","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-755.25,"y":1707.125,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:727","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"absoluteRenderBounds":{"x":-750.953125,"y":1707.1234130859375,"width":8.203125,"height":6.875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-759,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-759,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:728","name":"Rectangle 79","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-761,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-761,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-825,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-825,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:729","name":"Zebra Designer","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:730","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:731","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:732","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-632.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-632.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:733","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-639,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:734","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-622.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-622.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:736","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-635.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:737","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-624.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-627.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-627.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:739","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-621.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:740","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-634,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-634,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:741","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-629.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-635.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-635.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:743","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:744","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:745","name":"Group 20","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:746","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-592.125,"y":1819.0001220703125,"width":1.2499899864196777,"height":3.8570001125335693},"absoluteRenderBounds":{"x":-592.125,"y":1819.0001220703125,"width":1.25,"height":3.8570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:747","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-599,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:748","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.2499899864196777,"height":1.3570201396942139},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1819.0001220703125,"width":1.25,"height":1.3570556640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-582.4376831054688,"y":1814,"width":3.4376325607299805,"height":3.436061382293701},"absoluteRenderBounds":{"x":-582.4376831054688,"y":1814,"width":3.4376220703125,"height":3.43603515625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:750","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1819.0001220703125,"width":1.8749852180480957,"height":6.981975078582764},"absoluteRenderBounds":{"x":-595.25,"y":1819.0001220703125,"width":1.875,"height":6.98193359375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:751","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.2499899864196777,"height":8.237434387207031},"absoluteRenderBounds":{"x":-584.0001831054688,"y":1822.0125732421875,"width":1.25,"height":8.2374267578125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-587.125,"y":1824.5145263671875,"width":1.8749852180480957,"height":5.735499382019043},"absoluteRenderBounds":{"x":-587.125,"y":1824.5145263671875,"width":1.875,"height":5.7354736328125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:753","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.4999799728393555,"height":14.999881744384766},"absoluteRenderBounds":{"x":-581.5001831054688,"y":1819.0001220703125,"width":2.5,"height":14.9998779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:754","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-594,"y":1815.5626220703125,"width":13.437392234802246,"height":13.437392234802246},"absoluteRenderBounds":{"x":-594,"y":1815.5626220703125,"width":13.4373779296875,"height":13.4373779296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:755","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.2499899864196777,"height":2.6081831455230713},"absoluteRenderBounds":{"x":-589.6251831054688,"y":1827.641845703125,"width":1.25,"height":2.608154296875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-595.25,"y":1827.125,"width":3.1249752044677734,"height":3.1249752044677734},"absoluteRenderBounds":{"x":-595.25,"y":1827.125,"width":3.125,"height":3.125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1814,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1814,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:757","name":"Rectangle 80","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1812,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1812,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1788,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1788,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:758","name":"PDF Direct","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:759","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:760","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:761","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:762","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1694,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1694,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:764","name":"Rectangle 81","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1692,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1692,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1668,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1668,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:765","name":"Print Station","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:766","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:767","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:768","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:769","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-633.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:771","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-639,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-639,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:772","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-641,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-641,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:773","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:774","name":"Group 21","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:775","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1579.6265869140625,"width":6.875,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:776","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1577.7515869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-593.0625,"y":1575.8765869140625,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:778","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-599,"y":1574,"width":20,"height":20},"absoluteRenderBounds":{"x":-599,"y":1574,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:779","name":"Rectangle 82","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-601,"y":1572,"width":24,"height":24},"absoluteRenderBounds":{"x":-601,"y":1572,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-665,"y":1548,"width":112,"height":72},"absoluteRenderBounds":{"x":-665,"y":1548,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:780","name":"Printer Profile Manager","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:781","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:782","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:783","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2069,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2079,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:785","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2070.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2070.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:786","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2066.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:787","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:788","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:789","name":"Group 22","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:790","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"absoluteRenderBounds":{"x":-2029,"y":1462.75,"width":8.125,"height":1.25},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2039,"y":1454,"width":7.500000476837158,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":7.5,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:792","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2030.875,"y":1454,"width":11.875,"height":19.999980926513672},"absoluteRenderBounds":{"x":-2030.875,"y":1454,"width":11.875,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:793","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"absoluteRenderBounds":{"x":-2026.34375,"y":1467.59375,"width":2.8125,"height":2.8125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2039,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-2039,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:794","name":"Rectangle 83","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2041,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-2041,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2105,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-2105,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:795","name":"Zebra Setup Utility","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:797","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1912.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:799","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1912.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:800","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1914.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1914.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1916.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:802","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1912.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1912.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:803","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1918,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1918,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:804","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1905.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1909.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1909.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1918,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1918,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:806","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1921,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1921,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:807","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:808","name":"Group 23","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:809","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.218367099761963,"height":2.9128870964050293},"absoluteRenderBounds":{"x":-1872.2763671875,"y":1466.3695068359375,"width":7.2183837890625,"height":2.912841796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:810","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.826626777648926,"height":4.608960151672363},"absoluteRenderBounds":{"x":-1872.4505615234375,"y":1469.3909912109375,"width":7.82666015625,"height":4.6090087890625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:811","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1874.636962890625,"y":1462.326171875,"width":1.2363303899765015,"height":1.0824307203292847},"absoluteRenderBounds":{"x":-1874.636962890625,"y":1462.326171875,"width":1.236328125,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.1867201328277588,"height":1.0835849046707153},"absoluteRenderBounds":{"x":-1876.28759765625,"y":1462.3250732421875,"width":1.186767578125,"height":1.0836181640625},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:813","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1872.857177734375,"y":1462.326171875,"width":1.2019550800323486,"height":1.0824215412139893},"absoluteRenderBounds":{"x":-1872.857177734375,"y":1462.326171875,"width":1.201904296875,"height":1.0823974609375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:814","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1878,"y":1460.6304931640625,"width":9.494367599487305,"height":11.586734771728516},"absoluteRenderBounds":{"x":-1878,"y":1460.6304931640625,"width":9.494384765625,"height":11.5867919921875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.476001501083374,"height":8.8191499710083},"absoluteRenderBounds":{"x":-1865.2904052734375,"y":1463.3980712890625,"width":2.4759521484375,"height":8.819091796875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:816","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1869.145751953125,"y":1454,"width":9.2175874710083,"height":9.217195510864258},"absoluteRenderBounds":{"x":-1869.145751953125,"y":1454,"width":9.217529296875,"height":9.2171630859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1878,"y":1454,"width":18.071775436401367,"height":20.000001907348633},"absoluteRenderBounds":{"x":-1878,"y":1454,"width":18.07177734375,"height":20.000001907348633},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:817","name":"Rectangle 84","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1881,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1881,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1945,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1945,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:818","name":"Bluetooth Management","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:819","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:820","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1759,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1759,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:821","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1761,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1761,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:822","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:823","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1719,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1719,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:824","name":"Rectangle 85","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1721,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1721,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1785,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1785,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:825","name":"Zebra OneCare","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:826","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:827","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1599,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1599,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1601,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1601,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:829","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:830","name":"Bounds","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"1327:831","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1559,"y":1458,"width":20,"height":13},"absoluteRenderBounds":{"x":-1559,"y":1458,"width":20,"height":13},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1561,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1561,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1625,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1625,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:832","name":"Visibility Services","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:833","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:834","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1439,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:836","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1437.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1437.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1439,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1439,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:837","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1441,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1441,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:838","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:839","name":"Group 24","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:840","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.78166389465332},"absoluteRenderBounds":{"x":-1399,"y":1458.2183837890625,"width":20,"height":15.7816162109375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:841","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1397.7501220703125,"y":1454,"width":17.502717971801758,"height":11.508249282836914},"absoluteRenderBounds":{"x":-1397.7501220703125,"y":1454,"width":17.502685546875,"height":11.50830078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1399,"y":1454,"width":20,"height":19.99999237060547},"absoluteRenderBounds":{"x":-1399,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:842","name":"Rectangle 87","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1401,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1401,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1465,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1465,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:843","name":"Print Secure","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:844","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:845","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:846","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1270.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1270.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:847","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1279,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:848","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1266.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:849","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1272.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1272.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1279,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:850","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1281,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1281,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:851","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:852","name":"Group 25","type":"GROUP","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:853","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1230.2498779296875,"y":1457,"width":11.250019073486328,"height":15},"absoluteRenderBounds":{"x":-1230.2498779296875,"y":1457,"width":11.25,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:854","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1239,"y":1457,"width":5.625007152557373,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":5.625,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:855","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125035762786865,"height":3.7497923374176025},"absoluteRenderBounds":{"x":-1226.8125,"y":1459.500244140625,"width":2.8125,"height":3.749755859375},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:856","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1232.90625,"y":1457,"width":5.783603191375732,"height":15},"absoluteRenderBounds":{"x":-1232.90625,"y":1457,"width":5.7835693359375,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"absoluteRenderBounds":{"x":-1239,"y":1457,"width":20.00012969970703,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:857","name":"Rectangle 88","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1241,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1241,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1305,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1305,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"1327:858","name":"Design Tools","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"1327:859","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:860","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1119,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1119,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:861","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1121,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1121,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"1327:862","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"1327:863","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1079,"y":1454,"width":20,"height":20},"absoluteRenderBounds":{"x":-1079,"y":1454,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]},{"id":"1327:864","name":"Rectangle 89","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1081,"y":1452,"width":24,"height":24},"absoluteRenderBounds":{"x":-1081,"y":1452,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1145,"y":1428,"width":112,"height":72},"absoluteRenderBounds":{"x":-1145,"y":1428,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-2201,"y":996,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-2201,"y":996,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]},{"id":"1335:8","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":2.9301064068370644,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-3359.0000102636695,"y":-52,"width":6950.692182948143,"height":1952.0269136510833},"absoluteRenderBounds":{"x":-1296.314453125,"y":-104.04297637939453,"width":4824.23779296875,"height":1574.447998046875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:9","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.04331811397151529,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2200.9999592026666,"y":1364,"width":5053.334883023732,"height":725.9568458990998},"absoluteRenderBounds":{"x":-2132.318603515625,"y":1299.0430908203125,"width":4830.6630859375,"height":785.3602294921875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:11","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":-0.047863896407128396,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-2153,"y":-605.9999900593266,"width":5054.599931079487,"height":748.7204790378983},"absoluteRenderBounds":{"x":-2087.5322265625,"y":-666.4064331054688,"width":4832.2890625,"height":807.083740234375},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"1335:10","name":"DO NOT EDIT","type":"TEXT","scrollBehavior":"SCROLLS","rotation":0.02344490640741333,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-4305.0001333951595,"y":25,"width":5046.578444040607,"height":626.2690572675228},"absoluteRenderBounds":{"x":-4236.24853515625,"y":-41.36850357055664,"width":4822.38134765625,"height":690.2047729492188},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0,"g":0,"b":0,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","exportSettings":[],"effects":[],"characters":"DO NOT EDIT","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"paragraphSpacing":400,"fontSize":800,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":400,"lineHeightPercent":38.46154022216797,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"layoutVersion":4,"characterStyleOverrides":[201,200,199,198,197,196,199,195,194,193,192],"styleOverrideTable":{"192":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10392309725284576,"g":0.5164550542831421,"b":0.0007901493809185922,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"193":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.01982421800494194,"b":0.9019825458526611,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"194":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0,"b":0,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"195":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":0.8528879284858704,"b":0.08055012673139572,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"196":{"paragraphSpacing":400,"fontSize":800,"letterSpacing":10,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.7913957834243774,"g":0.45104166865348816,"b":1,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"197":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.2540266215801239,"g":0.8491048216819763,"b":0.3135344982147217,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"198":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5354252457618713,"g":0.24530257284641266,"b":0.763378918170929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"199":{"fontSize":800},"200":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.9333333373069763,"g":0.04601345583796501,"b":0.04601345583796501,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"},"201":{"paragraphSpacing":400,"fontSize":800,"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.6368045806884766,"g":0.40883100032806396,"b":0.926953136920929,"a":1}}],"lineHeightPx":400,"lineHeightPercent":42.66666793823242,"lineHeightPercentFontSize":50,"lineHeightUnit":"PIXELS"}},"lineTypes":["NONE"],"lineIndentations":[0]}],"backgroundColor":{"r":0.9607843160629272,"g":0.9607843160629272,"b":0.9607843160629272,"a":1},"prototypeStartNodeID":null,"flowStartingPoints":[],"prototypeDevice":{"type":"NONE","rotation":"NONE"},"exportSettings":[]} \ No newline at end of file diff --git a/test/data/index.ts b/test/data/index.ts index 97f50dbb..e881a362 100644 --- a/test/data/index.ts +++ b/test/data/index.ts @@ -1,6 +1,6 @@ -import { GenerateFontResult, IconManifest, ImageManifest } from "../../scripts/types/customTypes.js"; import { readFileSync } from "fs"; -import { ComponentSets, DocumentResponse, FigmaNode } from "../../scripts/types/figmaTypes.js"; +import { IconManifest, ImageManifest, GenerateFontResult } from "../../scripts/fetch-icons/types/customTypes.js"; +import { DocumentResponse, FigmaNode, ComponentSets } from "../../scripts/fetch-icons/types/figmaTypes.js"; import { extractCategoryNames } from "../../scripts/utils/figmaUtils.js"; export const outputDir = "./test/outputs"; diff --git a/test/data/singleCategoryNode.json b/test/data/singleCategoryNode.json index 516d4670..3fef9f73 100644 --- a/test/data/singleCategoryNode.json +++ b/test/data/singleCategoryNode.json @@ -1 +1 @@ -{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0],"effects":[]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0,"absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","effects":[]}],"blendMode":"PASS_THROUGH","clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"effects":[]} \ No newline at end of file +{"id":"176:5659","name":"Content","type":"FRAME","locked":true,"scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5660","name":"Content","type":"TEXT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-352,"width":88,"height":32},"absoluteRenderBounds":{"x":-159.67999267578125,"y":-344.0400085449219,"width":85.08937072753906,"height":17.3280029296875},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"OUTSIDE","styles":{"fill":"1:2","text":"1:3"},"exportSettings":[],"effects":[],"characters":"Content","style":{"fontFamily":"IBM Plex Sans","fontPostScriptName":"IBMPlexSans-Medium","fontWeight":500,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0,"lineHeightPx":32,"lineHeightPercent":102.5641098022461,"lineHeightPercentFontSize":133.3333282470703,"lineHeightUnit":"PIXELS"},"layoutVersion":3,"characterStyleOverrides":[],"styleOverrideTable":{},"lineTypes":["NONE"],"lineIndentations":[0]},{"id":"176:5661","name":"Line","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-161,"y":-304,"width":1552,"height":1},"absoluteRenderBounds":{"x":-161,"y":-304,"width":1552,"height":1},"constraints":{"vertical":"TOP","horizontal":"CENTER"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.8784313797950745,"g":0.8901960849761963,"b":0.9137254953384399,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:4"},"exportSettings":[],"effects":[]},{"id":"176:5662","name":"Add","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5663","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5664","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5665","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-132,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-132,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5666","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5667","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5668","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-92,"y":-210,"width":14,"height":14},"absoluteRenderBounds":{"x":-92,"y":-210,"width":14,"height":14},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5669","name":"Sort","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5670","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5671","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5672","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1144.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1143,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5673","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5674","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5675","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5,"y":-212,"width":20.68938636779785,"height":18},"absoluteRenderBounds":{"x":1184.5,"y":-212,"width":20.6893310546875,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null,"2":null,"3":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":1183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5676","name":"Content","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5677","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","rotation":-1.224648970167536e-16,"blendMode":"PASS_THROUGH","children":[{"id":"176:5678","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5679","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","rotation":1.224648970167536e-16,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":665,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"absoluteRenderBounds":{"x":663,"y":24.999999999999996,"width":24,"height":24.000000000000004},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5680","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5681","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5682","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":705,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5683","name":"Copy File","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5684","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5685","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5686","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":345,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5687","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5688","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5689","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":26,"width":19,"height":22},"absoluteRenderBounds":{"x":385,"y":26,"width":19,"height":22},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5690","name":"Remove Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5691","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5692","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5693","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":345,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":345,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5694","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5695","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5696","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":385,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":385,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5697","name":"Add Circle Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5698","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5699","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5700","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5701","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5702","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5703","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5704","name":"Remove Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5705","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5706","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5707","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":665,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":665,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5708","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5709","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5710","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":705,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":705,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5711","name":"Block","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5712","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5713","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5714","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":185,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5715","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5716","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5717","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":225,"y":27,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5718","name":"Add Circle","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5719","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5720","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5721","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":505,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":505,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5722","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5723","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5724","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":545,"y":-213,"width":20,"height":20},"absoluteRenderBounds":{"x":545,"y":-213,"width":20,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5725","name":"Remove","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5726","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5727","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5728","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":28,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5729","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5730","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5731","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-204,"width":14,"height":2},"absoluteRenderBounds":{"x":68,"y":-204,"width":14,"height":2},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5732","name":"Android","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5733","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5734","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5735","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":506,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":506,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5736","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5737","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5738","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":546,"y":26,"width":18.603267669677734,"height":22},"absoluteRenderBounds":{"x":546,"y":26,"width":18.603271484375,"height":22},"preserveRatio":true,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5739","name":"Add Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5740","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5741","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5742","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5743","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5744","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5745","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5746","name":"Remove Box","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5747","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5748","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5749","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":986,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5750","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5751","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5752","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-212,"width":18,"height":18},"absoluteRenderBounds":{"x":1026,"y":-212,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-215,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-215,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-239,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-239,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5753","name":"Push Pin","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5754","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5755","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5756","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":28,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":28,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5757","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5758","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5759","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":68,"y":-93,"width":14,"height":20},"absoluteRenderBounds":{"x":68,"y":-93,"width":14,"height":20},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5760","name":"Send","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5761","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5762","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5763","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":185,"y":-91.48487854003906,"width":19.457500457763672,"height":16.96976089477539},"absoluteRenderBounds":{"x":185,"y":-91.48487854003906,"width":19.457504272460938,"height":16.969757080078125},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5764","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5765","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5766","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":225,"y":-92,"width":21,"height":18},"absoluteRenderBounds":{"x":225,"y":-92,"width":21,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":223,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":223,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":159,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":159,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5767","name":"Backspace","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5768","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5769","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5770","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":343.2049865722656,"y":-92,"width":23.795000076293945,"height":18},"absoluteRenderBounds":{"x":343.2049865722656,"y":-92,"width":23.795013427734375,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5771","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5772","name":"Backspace","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5773","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":383,"y":-92,"width":24,"height":18},"absoluteRenderBounds":{"x":383,"y":-92,"width":24,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":383,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":383,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":319,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":319,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5774","name":"Flag","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5775","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5776","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5777","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":508,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":508,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":503,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":503,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5778","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5779","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5780","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":548,"y":-91,"width":15,"height":17},"absoluteRenderBounds":{"x":548,"y":-91,"width":15,"height":17},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":543,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":543,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":479,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":479,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5781","name":"Save","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5782","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5783","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5784","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":666,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":666,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":663,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":663,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5785","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5786","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5787","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":706,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":706,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":703,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":703,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":639,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":639,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5788","name":"Reply","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5789","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5790","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5791","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592500686645508,"height":13.594012260437012},"absoluteRenderBounds":{"x":986.407470703125,"y":-88.59400939941406,"width":17.592529296875,"height":13.594009399414062},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":983,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":983,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5792","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5793","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5794","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1026,"y":-90,"width":18,"height":15},"absoluteRenderBounds":{"x":1026,"y":-90,"width":18,"height":15},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1023,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1023,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":959,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":959,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5795","name":"Redo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5796","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5797","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5798","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1144.9423828125,"y":-87,"width":20.05765724182129,"height":8},"absoluteRenderBounds":{"x":1144.9423828125,"y":-87,"width":20.0576171875,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1143,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1143,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5799","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5800","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5801","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1184.5400390625,"y":-88,"width":20.459999084472656,"height":9},"absoluteRenderBounds":{"x":1184.5400390625,"y":-88,"width":20.4599609375,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1183,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1183,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1119,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1119,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5802","name":"Save Alt","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5803","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5804","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5805","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":826,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":823,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":823,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5806","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5807","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5808","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":866,"y":-92,"width":18,"height":18},"absoluteRenderBounds":{"x":866,"y":-92,"width":18,"height":18},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":863,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":863,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5809","name":"Undo","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5810","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5811","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5812","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1305,"y":-87,"width":20.067657470703125,"height":8},"absoluteRenderBounds":{"x":1305,"y":-87,"width":20.067626953125,"height":8},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1303,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1303,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5813","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5814","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5815","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":1345,"y":-88,"width":20.469999313354492,"height":9},"absoluteRenderBounds":{"x":1345,"y":-88,"width":20.469970703125,"height":9},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1343,"y":-95,"width":24,"height":24},"absoluteRenderBounds":{"x":1343,"y":-95,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":1279,"y":-119,"width":112,"height":72},"absoluteRenderBounds":{"x":1279,"y":-119,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[{"suffix":"","format":"SVG","constraint":{"type":"SCALE","value":1}}],"effects":[]},{"id":"176:5816","name":"Chart Pie","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5817","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5818","name":"Rectangle 1756","type":"RECTANGLE","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5819","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":862,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":862,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":860,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":860,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5820","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5821","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","boundVariables":{"fills":[{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}]},"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":826,"y":27,"width":20,"height":20},"absoluteRenderBounds":{"x":826,"y":27.028961181640625,"width":19.970947265625,"height":19.94207763671875},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1},"boundVariables":{"color":{"type":"VARIABLE_ALIAS","id":"VariableID:7c6cb403d78e0f95c99202e2fe0cb21d77c29570/1486:1151"}}}],"fillOverrideTable":{"1":null},"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"176:625"},"exportSettings":[],"effects":[],"rectangleCornerRadii":[0,0,0,0],"cornerSmoothing":0}],"absoluteBoundingBox":{"x":824,"y":25,"width":24,"height":24},"absoluteRenderBounds":{"x":824,"y":25,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":false,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":799,"y":1,"width":112,"height":72},"absoluteRenderBounds":{"x":799,"y":1,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.5921568870544434,"g":0.27843138575553894,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5822","name":"Email","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5823","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5824","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5825","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-135,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-135,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-137,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-137,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5826","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5827","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5828","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":-95,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":-95,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-97,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":-97,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-161,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-161,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]},{"id":"176:5829","name":"Email Outline","type":"COMPONENT_SET","scrollBehavior":"SCROLLS","componentPropertyDefinitions":{"Style":{"type":"VARIANT","defaultValue":"Round","variantOptions":["Round","Sharp"]}},"blendMode":"PASS_THROUGH","children":[{"id":"176:5830","name":"Style=Round","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5831","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5832","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":25,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":25,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":23,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":23,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]},{"id":"176:5833","name":"Style=Sharp","type":"COMPONENT","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","children":[{"id":"176:5834","name":"Bounds","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":null,"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","exportSettings":[],"effects":[]},{"id":"176:5835","name":"Vector","type":"VECTOR","scrollBehavior":"SCROLLS","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":65,"y":141,"width":20,"height":16},"absoluteRenderBounds":{"x":65,"y":141,"width":20,"height":16},"constraints":{"vertical":"SCALE","horizontal":"SCALE"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.11372549086809158,"g":0.11764705926179886,"b":0.13725490868091583,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","styles":{"fill":"1:5"},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":63,"y":137,"width":24,"height":24},"absoluteRenderBounds":{"x":63,"y":137,"width":24,"height":24},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutAlign":"INHERIT","layoutGrow":0,"layoutSizingHorizontal":"FIXED","layoutSizingVertical":"FIXED","clipsContent":true,"background":[],"fills":[],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-1,"y":113,"width":112,"height":72},"absoluteRenderBounds":{"x":-1,"y":113,"width":112,"height":72},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"layoutSizingHorizontal":"HUG","layoutSizingVertical":"HUG","clipsContent":true,"background":[],"fills":[],"strokes":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.48235294222831726,"g":0.3803921639919281,"b":1,"a":1}}],"cornerRadius":5,"cornerSmoothing":0,"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":0,"g":0,"b":0,"a":0},"layoutMode":"HORIZONTAL","itemSpacing":16,"paddingLeft":24,"paddingRight":24,"paddingTop":24,"paddingBottom":24,"layoutWrap":"NO_WRAP","strokeDashes":[10,5],"exportSettings":[],"effects":[]}],"absoluteBoundingBox":{"x":-257,"y":-432,"width":1744,"height":1280},"absoluteRenderBounds":{"x":-257,"y":-432,"width":1744,"height":1280},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1,"g":1,"b":1,"a":1}}],"strokes":[],"strokeWeight":1,"strokeAlign":"INSIDE","backgroundColor":{"r":1,"g":1,"b":1,"a":1},"exportSettings":[],"effects":[]} \ No newline at end of file diff --git a/test/integration/fetchIcons.test.ts b/test/fetch-icons/integration/fetchIcons.test.ts similarity index 66% rename from test/integration/fetchIcons.test.ts rename to test/fetch-icons/integration/fetchIcons.test.ts index 75313101..2cd5bac4 100644 --- a/test/integration/fetchIcons.test.ts +++ b/test/fetch-icons/integration/fetchIcons.test.ts @@ -1,10 +1,10 @@ import { assert } from "chai"; -import { ZDS_ASSETS_FILE_ID, ZDS_ASSETS_ICON_PAGE_NAME } from "../../figmaConfig.js"; -import fetchIcons from "../../scripts/fetchIcons.js"; -import { checkFigmaTokenIsSet } from "../../scripts/utils/figmaUtils.js"; -import { testDartOutputDir, testTSOutputDir, zdsIntegrationOutputDir } from "../data/constants.js"; +import { ZDS_ASSETS_FILE_ID, ZDS_ASSETS_ICON_PAGE_NAME } from "../../../figmaConfig.js"; +import fetchIcons, { definitionsDir, fontDir } from "../../../scripts/fetch-icons/fetchIcons.js"; +import { checkFigmaTokenIsSet } from "../../../scripts/utils/figmaUtils.js"; +import { zdsIntegrationOutputDir } from "../../data/constants.js"; import { existsSync, readFileSync, rmSync } from "fs"; -import { IconManifest } from "../../scripts/types/customTypes.js"; +import { IconManifest } from "../../../scripts/fetch-icons/types/customTypes.js"; import { checkFontsExist, checkIconsExist } from "../utils.js"; import { createRequire } from "module"; const require = createRequire(import.meta.url); @@ -41,15 +41,11 @@ describe("fetchIcons", () => { }); it("should create fonts", () => { - checkFontsExist( - "zeta-icons", - `${zdsIntegrationOutputDir}/${testDartOutputDir}`, - `${zdsIntegrationOutputDir}/${testTSOutputDir}` - ); + checkFontsExist("zeta-icons", `${zdsIntegrationOutputDir}/${fontDir}`); }); it("should write definition files", () => { - assert.equal(existsSync(`${zdsIntegrationOutputDir}/${testDartOutputDir}/icons.g.dart`), true); - assert.equal(existsSync(`${zdsIntegrationOutputDir}/${testTSOutputDir}/icon-types.ts`), true); + assert.equal(existsSync(`${zdsIntegrationOutputDir}/${definitionsDir}/icons.dart`), true); + assert.equal(existsSync(`${zdsIntegrationOutputDir}/${definitionsDir}/icon-types.ts`), true); }); }); diff --git a/test/fetch-icons/integration/generateDefinitionFiles.test.ts b/test/fetch-icons/integration/generateDefinitionFiles.test.ts new file mode 100644 index 00000000..4836fb6b --- /dev/null +++ b/test/fetch-icons/integration/generateDefinitionFiles.test.ts @@ -0,0 +1,20 @@ +import { assert } from "chai"; +import { existsSync } from "fs"; +import { generateDefinitionFiles } from "../../../scripts/fetch-icons/generators/generateDefinitionFiles.js"; +import { generatedFontDefinitions, manifest } from "../../data/index.js"; +import { testDefinitionsOutputDir, testOutputDir } from "../../data/constants.js"; + +describe("generateDefinitionFiles", () => { + before(async () => { + generateDefinitionFiles(testOutputDir, testDefinitionsOutputDir, generatedFontDefinitions, manifest); + }); + + it("should write definition files", () => { + assert.equal(existsSync(`${testDefinitionsOutputDir}/icons.dart`), true); + assert.equal(existsSync(`${testDefinitionsOutputDir}/icon-types.ts`), true); + }); + + it("should write the icon manifest", () => { + assert.equal(existsSync(`${testOutputDir}/icon-manifest.json`), true); + }); +}); diff --git a/test/fetch-icons/integration/generateFontFiles.test.ts b/test/fetch-icons/integration/generateFontFiles.test.ts new file mode 100644 index 00000000..4af0ee80 --- /dev/null +++ b/test/fetch-icons/integration/generateFontFiles.test.ts @@ -0,0 +1,26 @@ +import "./saveSvgs.test.js"; // Ensures saveSVGs is called before running these tests. + +import { optimizeSVGs } from "../../../scripts/utils/optimizeSvgs.js"; +import { testFontName, testFontsOutputDir, testIconsOutputDir, testTempOutputDir } from "../../data/constants.js"; +import { categoryNames, generatedFontDefinitions } from "../../data/index.js"; +import { GenerateFontResult } from "../../../scripts/fetch-icons/types/customTypes.js"; +import { generateFonts } from "../../../scripts/fetch-icons/generators/generateFonts.js"; +import { assert } from "chai"; +import { checkFontsExist } from "../utils.js"; + +describe("generateFontFiles", () => { + let result: GenerateFontResult; + + before(async () => { + await optimizeSVGs(testIconsOutputDir, testTempOutputDir, categoryNames); + result = await generateFonts(testTempOutputDir, testFontsOutputDir, testFontName); + }); + + it("should return a correct font generation result", () => { + assert.deepEqual(result, generatedFontDefinitions); + }); + + it("should have created sharp and rounded ttf and woff2 files", () => { + checkFontsExist(testFontName, testFontsOutputDir); + }); +}); diff --git a/test/integration/generateIconManifest.test.ts b/test/fetch-icons/integration/generateIconManifest.test.ts similarity index 56% rename from test/integration/generateIconManifest.test.ts rename to test/fetch-icons/integration/generateIconManifest.test.ts index b49ea3bc..07f8f32e 100644 --- a/test/integration/generateIconManifest.test.ts +++ b/test/fetch-icons/integration/generateIconManifest.test.ts @@ -1,7 +1,7 @@ import { assert } from "chai"; -import { generateIconManifest } from "../../scripts/generators/generateIconManifest.js"; -import { testIconsOutputDir } from "../data/constants.js"; -import { categoryNodes, componentSets, manifest } from "../data/index.js"; +import { generateIconManifest } from "../../../scripts/fetch-icons/generators/generateIconManifest.js"; +import { testIconsOutputDir } from "../../data/constants.js"; +import { categoryNodes, componentSets, manifest } from "../../data/index.js"; describe("generateIconManifest", () => { it("should generate the correct icon manifest from a given list of category nodes", () => { diff --git a/test/integration/saveSvgs.test.ts b/test/fetch-icons/integration/saveSvgs.test.ts similarity index 68% rename from test/integration/saveSvgs.test.ts rename to test/fetch-icons/integration/saveSvgs.test.ts index a1932322..68856e5c 100644 --- a/test/integration/saveSvgs.test.ts +++ b/test/fetch-icons/integration/saveSvgs.test.ts @@ -1,9 +1,9 @@ -import { saveSVGs } from "../../scripts/utils/saveSvgs.js"; -import { allImageFiles, categoryNames } from "../data/index.js"; -import { testIconsOutputDir } from "../data/constants.js"; +import { saveSVGs } from "../../../scripts/utils/saveSvgs.js"; +import { allImageFiles, categoryNames } from "../../data/index.js"; +import { testIconsOutputDir } from "../../data/constants.js"; import { existsSync } from "fs"; import { assert } from "chai"; -import { ImageManifest } from "../../scripts/types/customTypes.js"; +import { ImageManifest } from "../../../scripts/fetch-icons/types/customTypes.js"; import { checkIconsExist } from "../utils.js"; describe("saveSvgs", () => { diff --git a/test/regenerateTestFiles.ts b/test/fetch-icons/regenerateTestFiles.ts similarity index 79% rename from test/regenerateTestFiles.ts rename to test/fetch-icons/regenerateTestFiles.ts index a64e5322..1ecaf712 100644 --- a/test/regenerateTestFiles.ts +++ b/test/fetch-icons/regenerateTestFiles.ts @@ -1,6 +1,6 @@ -import { rmSync, rmdirSync, writeFileSync } from "fs"; +import { rmSync, writeFileSync } from "fs"; import * as dotenv from "dotenv"; -import { getFigmaDocument, getImageFiles } from "../scripts/utils/api.js"; +import { getFigmaDocument, getImageFiles } from "../../scripts/utils/api.js"; import { testDartOutputDir, testFileId, @@ -8,18 +8,18 @@ import { testIconsOutputDir, testOutputDir, testTSOutputDir, -} from "./data/constants.js"; +} from "../data/constants.js"; import { extractCategoryNames, extractCategoryNodes, extractIconSets, findIconPage, -} from "../scripts/utils/figmaUtils.js"; -import { generateIconManifest } from "../scripts/generators/generateIconManifest.js"; -import { ComponentSets } from "../scripts/types/figmaTypes.js"; -import { generateFonts } from "../scripts/generators/generateFonts.js"; -import { saveSVGs } from "../scripts/utils/saveSvgs.js"; -import { optimizeSVGs } from "../scripts/utils/optimizeSvgs.js"; +} from "../../scripts/utils/figmaUtils.js"; +import { generateIconManifest } from "../../scripts/fetch-icons/generators/generateIconManifest.js"; +import { generateFonts } from "../../scripts/fetch-icons/generators/generateFonts.js"; +import { saveSVGs } from "../../scripts/utils/saveSvgs.js"; +import { optimizeSVGs } from "../../scripts/utils/optimizeSvgs.js"; +import { ComponentSets } from "../../scripts/fetch-icons/types/figmaTypes.js"; async function main() { const tempOutputDir = `${testOutputDir}/temp`; diff --git a/test/unit/api.test.ts b/test/fetch-icons/unit/api.test.ts similarity index 70% rename from test/unit/api.test.ts rename to test/fetch-icons/unit/api.test.ts index 2725636d..d1e10246 100644 --- a/test/unit/api.test.ts +++ b/test/fetch-icons/unit/api.test.ts @@ -1,11 +1,11 @@ import { assert } from "chai"; -import { DocumentResponse } from "../../scripts/types/figmaTypes.js"; -import { getFigmaDocument, getImageFiles } from "../../scripts/utils/api.js"; -import { testFileId } from "../data/constants.js"; -import { allImageFiles, manifest } from "../data/index.js"; +import { DocumentResponse } from "../../../scripts/fetch-icons/types/figmaTypes.js"; +import { getFigmaDocument, getImageFiles } from "../../../scripts/utils/api.js"; +import { testFileId } from "../../data/constants.js"; +import { allImageFiles, manifest } from "../../data/index.js"; import { before } from "mocha"; -import { checkFigmaTokenIsSet } from "../../scripts/utils/figmaUtils.js"; -import { ZDS_ASSETS_FILE_ID } from "../../figmaConfig.js"; +import { checkFigmaTokenIsSet } from "../../../scripts/utils/figmaUtils.js"; +import { ZDS_ASSETS_FILE_ID } from "../../../figmaConfig.js"; describe("api", () => { before(() => { diff --git a/test/unit/figmaUtils.test.ts b/test/fetch-icons/unit/figmaUtils.test.ts similarity index 90% rename from test/unit/figmaUtils.test.ts rename to test/fetch-icons/unit/figmaUtils.test.ts index d3b754c4..7d7a34e6 100644 --- a/test/unit/figmaUtils.test.ts +++ b/test/fetch-icons/unit/figmaUtils.test.ts @@ -1,12 +1,11 @@ import { assert } from "chai"; -import { ComponentSets } from "../../scripts/types/figmaTypes.js"; import { extractCategoryNames, extractCategoryNodes, extractIconSets, findIconPage, getSearchTerms, -} from "../../scripts/utils/figmaUtils.js"; +} from "../../../scripts/utils/figmaUtils.js"; import { categoryNames, categoryNodes, @@ -15,8 +14,8 @@ import { iconNodes, iconPage, singleCategoryNode, -} from "../data/index.js"; -import { testIconPageName } from "../data/constants.js"; +} from "../../data/index.js"; +import { testIconPageName } from "../../data/constants.js"; describe("figmaUtils", () => { describe("findIconPage", () => { diff --git a/test/unit/fileUtils.test.ts b/test/fetch-icons/unit/fileUtils.test.ts similarity index 91% rename from test/unit/fileUtils.test.ts rename to test/fetch-icons/unit/fileUtils.test.ts index e7154758..f2bceeed 100644 --- a/test/unit/fileUtils.test.ts +++ b/test/fetch-icons/unit/fileUtils.test.ts @@ -1,7 +1,7 @@ -import { FontType } from "../../scripts/types/customTypes.js"; -import { clearDirectory, createFolder, getIconFileName } from "../../scripts/utils/fileUtils.js"; +import { FontType } from "../../../scripts/fetch-icons/types/customTypes.js"; +import { clearDirectory, createFolder, getIconFileName } from "../../../scripts/utils/fileUtils.js"; import { existsSync, rmSync, writeFileSync } from "node:fs"; -import { testOutputDir } from "../data/constants.js"; +import { testOutputDir } from "../../data/constants.js"; import { assert } from "chai"; describe("fileUtils - folders", () => { diff --git a/test/utils.ts b/test/fetch-icons/utils.ts similarity index 90% rename from test/utils.ts rename to test/fetch-icons/utils.ts index 1883d834..fc304654 100644 --- a/test/utils.ts +++ b/test/fetch-icons/utils.ts @@ -1,5 +1,5 @@ import { assert } from "chai"; -import { FontType, IconManifest } from "../scripts/types/customTypes.js"; +import { FontType, IconManifest } from "../../scripts/fetch-icons/types/customTypes.js"; import { existsSync } from "fs"; export function checkIconsExist(manifest: IconManifest) { diff --git a/test/integration/generateDefinitionFiles.test.ts b/test/integration/generateDefinitionFiles.test.ts deleted file mode 100644 index c73ead72..00000000 --- a/test/integration/generateDefinitionFiles.test.ts +++ /dev/null @@ -1,20 +0,0 @@ -import { assert } from "chai"; -import { existsSync } from "fs"; -import { generateDefinitionFiles } from "../../scripts/generators/generateDefinitionFiles.js"; -import { generatedFontDefinitions, manifest } from "../data/index.js"; -import { testDartOutputDir, testOutputDir, testTSOutputDir } from "../data/constants.js"; - -describe("generateDefinitionFiles", () => { - before(async () => { - generateDefinitionFiles(testOutputDir, generatedFontDefinitions, manifest); - }); - - it("should write definition files", () => { - assert.equal(existsSync(`${testDartOutputDir}/icons.g.dart`), true); - assert.equal(existsSync(`${testTSOutputDir}/icon-types.ts`), true); - }); - - it("should write the icon manifest", () => { - assert.equal(existsSync(`${testOutputDir}/icon-manifest.json`), true); - }); -}); diff --git a/test/integration/generateFontFiles.test.ts b/test/integration/generateFontFiles.test.ts deleted file mode 100644 index b3d2b0ab..00000000 --- a/test/integration/generateFontFiles.test.ts +++ /dev/null @@ -1,32 +0,0 @@ -import "./saveSvgs.test.js"; // Ensures saveSVGs is called before running these tests. - -import { optimizeSVGs } from "../../scripts/utils/optimizeSvgs.js"; -import { - testDartOutputDir, - testFontName, - testIconsOutputDir, - testTempOutputDir, - testTSOutputDir, -} from "../data/constants.js"; -import { categoryNames, generatedFontDefinitions } from "../data/index.js"; -import { GenerateFontResult } from "../../scripts/types/customTypes.js"; -import { generateFonts } from "../../scripts/generators/generateFonts.js"; -import { assert } from "chai"; -import { checkFontsExist } from "../utils.js"; - -describe("generateFontFiles", () => { - let result: GenerateFontResult; - - before(async () => { - await optimizeSVGs(testIconsOutputDir, testTempOutputDir, categoryNames); - result = await generateFonts(testTempOutputDir, testFontName, testDartOutputDir, testTSOutputDir); - }); - - it("should return a correct font generation result", () => { - assert.deepEqual(result, generatedFontDefinitions); - }); - - it("should have created sharp and rounded ttf and woff2 files", () => { - checkFontsExist(testFontName, testDartOutputDir, testTSOutputDir); - }); -});