diff --git a/.eslintrc.js b/.eslintrc.js index 9c377787..9664f283 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -22,7 +22,9 @@ module.exports = { ecmaVersion: 2018, }, rules: { - indent: ['error', 4], + indent: ['error', 4, { + SwitchCase: 1, + }], 'max-len': ['error', 160], 'no-unused-expressions': 'off', 'chai-friendly/no-unused-expressions': 'error', diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3c018b11..98fbe9c1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -22,6 +22,9 @@ jobs: - name: Install 📦 run: yarn --frozen-lockfile + - name: Lint 🔍 + run: yarn lint + - name: Test 🐛 run: yarn test diff --git a/.gitignore b/.gitignore index 2c103c88..fff5a70d 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ lerna-debug.log *.tsbuildinfo /.figmaexportrc.js +/.figmaexportrc.ts diff --git a/.nycrc b/.nycrc new file mode 100644 index 00000000..b898edd8 --- /dev/null +++ b/.nycrc @@ -0,0 +1,7 @@ +{ + "check-coverage": true, + "branches": 80, + "lines": 80, + "functions": 80, + "statements": 80 +} diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..6e529abe --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,33 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Launch via NPM", + "request": "launch", + "runtimeArgs": [ + "run-script", + "test" + ], + "runtimeExecutable": "npm", + "skipFiles": [ + "/**" + ], + "type": "pwa-node" + }, + { + "type": "node", + "request": "launch", + "name": "Debug", + "skipFiles": ["/**"], + "program": "./packages/cli/bin/run", + "cwd": "${workspaceFolder}", + "args": ["use-config"], + "console": "integratedTerminal", + "internalConsoleOptions": "neverOpen", + "preLaunchTask": "${defaultBuildTask}" + } + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..2780ccc2 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,16 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "build", + "group": { + "kind": "build", + "isDefault": true + }, + "problemMatcher": [], + "label": "npm: build", + "detail": "tsc --build packages/**/tsconfig.json" + } + ] +} diff --git a/lint-staged.config.js b/lint-staged.config.js index 54ef6037..3c1b4c3d 100644 --- a/lint-staged.config.js +++ b/lint-staged.config.js @@ -1,3 +1,3 @@ module.exports = { - '!(*.d).{js,ts}': () => 'yarn test', + '!(*.d).{js,ts}': () => ['yarn lint --fix', 'yarn coverage', 'git add .'], }; diff --git a/package.json b/package.json index bab7a50a..c0c50ade 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,8 @@ "url": "https://github.com/marcomontalbano/figma-export" }, "scripts": { + "predebug": "yarn build", + "debug": "./packages/cli/bin/run use-config", "preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\"", "clean": "rm -rf node_modules/ output/ */*/node_modules */*/output */*/dist */*/tsconfig.tsbuildinfo", "postinstall": "lerna bootstrap", @@ -15,10 +17,9 @@ "prepublish": "yarn build", "lint": "eslint . --ignore-pattern=node_modules --ignore-pattern=output --ignore-pattern=dist --ext .js,.ts", "pretest": "yarn build", - "posttest": "yarn lint", "test": "TS_NODE_PROJECT='./tsconfig.mocha.json' mocha", - "test:watch": "yarn test -- --watch --reporter=dot", - "coverage": "nyc --reporter=lcov --reporter=text yarn test -- --reporter=dot", + "test:watch": "yarn test --watch --reporter=dot", + "coverage": "nyc --reporter=lcov --reporter=text yarn test --reporter=dot", "coverage:watch": "npx nodemon -e js,mjs,ts --exec yarn coverage", "prewebsite:start": "yarn build", "website:start": "lerna run --scope @figma-export/website start --stream", @@ -38,6 +39,7 @@ }, "devDependencies": { "@types/chai": "~4.2.12", + "@types/chai-as-promised": "^7.1.3", "@types/chai-things": "0.0.34", "@types/mocha": "~8.0.1", "@types/node": "~14.0.27", @@ -46,6 +48,7 @@ "@typescript-eslint/eslint-plugin": "~3.8.0", "@typescript-eslint/parser": "~3.8.0", "chai": "~4.2.0", + "chai-as-promised": "^7.1.1", "chai-things": "~0.2.0", "eslint": "~7.6.0", "eslint-config-airbnb-base": "~14.2.0", diff --git a/packages/cli/src/commands/components.ts b/packages/cli/src/commands/components.ts index d3b4e314..583a67e8 100644 --- a/packages/cli/src/commands/components.ts +++ b/packages/cli/src/commands/components.ts @@ -1,7 +1,7 @@ import { Command, flags as commandFlags } from '@oclif/command'; import * as figmaExport from '@figma-export/core'; -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import fs = require('fs'); import path = require('path'); @@ -51,7 +51,7 @@ class ComponentsCommand extends Command { token: process.env.FIGMA_TOKEN || '', onlyFromPages: page, transformers: requirePackages(transformer), - outputters: requirePackages(outputter, { output }), + outputters: requirePackages(outputter, { output }), log: (message: string) => { spinner.text = message; }, }).then(() => { spinner.stop(); diff --git a/packages/cli/src/commands/use-config.ts b/packages/cli/src/commands/use-config.ts index 2ffd34df..86cfcd74 100644 --- a/packages/cli/src/commands/use-config.ts +++ b/packages/cli/src/commands/use-config.ts @@ -26,31 +26,34 @@ class UseConfigCommand extends Command { // eslint-disable-next-line import/no-dynamic-require, global-require const { commands = [] } = fs.existsSync(configPath) ? require(configPath) : {}; - Promise.all(commands.map((command: FigmaExportCommand) => { - const [commandName, options] = command; - - spinner.start(); - - let figmaExporter; - switch (commandName) { - case 'components': - figmaExporter = figmaExport.components; - break; - default: - throw new Error(`Command ${commandName} is not found.`); - } - + // eslint-disable-next-line @typescript-eslint/no-explicit-any + const handlePromise = (figmaExporter: (options: any) => Promise, options: Record) => { return figmaExporter({ token: process.env.FIGMA_TOKEN || '', fileId: '', ...options, - log: (message) => { spinner.text = message; }, + log: (message: string) => { spinner.text = message; }, }).then(() => { spinner.stop(); }).catch((err: Error) => { spinner.stop(); this.error(err, { exit: 1 }); }); + }; + + Promise.all(commands.map((command: FigmaExportCommand) => { + const [commandName, options] = command; + + spinner.start(); + + switch (commandName) { + case 'components': + return handlePromise(figmaExport.components, options); + case 'styles': + return handlePromise(figmaExport.styles, options); + default: + throw new Error(`Command ${commandName} is not found.`); + } })); } } diff --git a/packages/core/src/index.ts b/packages/core/src/index.ts index cda61ed7..938ebe4f 100644 --- a/packages/core/src/index.ts +++ b/packages/core/src/index.ts @@ -1 +1,2 @@ export { components } from './lib/export-components'; +export { styles } from './lib/export-styles'; diff --git a/packages/core/src/lib/_config.test.ts b/packages/core/src/lib/_config.test.ts index 5e673e2e..55e45e60 100644 --- a/packages/core/src/lib/_config.test.ts +++ b/packages/core/src/lib/_config.test.ts @@ -1,5 +1,5 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import * as Figma from 'figma-js'; const svg = { @@ -89,6 +89,14 @@ const page2: Figma.Canvas = { ], }; +const pageWithoutComponents: Figma.Canvas = { + ...({} as Figma.Canvas), + id: '10:7', + name: 'page2', + type: 'CANVAS', + children: [], +}; + const createDocument = (props: any): Figma.Document => ({ ...({} as Figma.Document), ...props, @@ -113,6 +121,7 @@ export { group1, page1, page2, + pageWithoutComponents, svg, createPage, createDocument, diff --git a/packages/core/src/lib/_mocks_/README.md b/packages/core/src/lib/_mocks_/README.md new file mode 100644 index 00000000..d2e62da7 --- /dev/null +++ b/packages/core/src/lib/_mocks_/README.md @@ -0,0 +1,17 @@ +# MOCKS + +## Files Endpoint + +https://www.figma.com/developers/api#files-endpoints + +```sh +curl -H "X-FIGMA-TOKEN: $FIGMA_TOKEN" "https://api.figma.com/v1/files/RSzpKJcnb6uBRQ3rOfLIyUs5" > ./packages/core/src/lib/_mocks_/figma.files.json +``` + +## Get File Nodes Endpoint + +https://www.figma.com/developers/api#get-file-nodes-endpoint + +```sh +curl -H "X-FIGMA-TOKEN: $FIGMA_TOKEN" "https://api.figma.com/v1/files/RSzpKJcnb6uBRQ3rOfLIyUs5/nodes?ids=121:10,121:12,121:16,121:17,121:18,122:14,122:16,122:18,124:8,124:18,296:7,330:1,336:5,339:0,339:1,339:2,339:3,339:5,339:7,341:2,376:2,376:9,376:13,376:15,400:33,254:1,254:2,254:3" > ./packages/core/src/lib/_mocks_/figma.fileNodes.json +``` diff --git a/packages/core/src/lib/_mocks_/figma.fileNodes.json b/packages/core/src/lib/_mocks_/figma.fileNodes.json new file mode 100644 index 00000000..9a9eb272 --- /dev/null +++ b/packages/core/src/lib/_mocks_/figma.fileNodes.json @@ -0,0 +1 @@ +{"name":"Figma Export","lastModified":"2020-08-24T18:54:01.338964Z","thumbnailUrl":"https://s3-alpha-sig.figma.com/thumbnails/2c78ef9d-68ae-4a11-b141-98e48fb16812?Expires=1599436800&Signature=MSSThvf1c~QTgSeBHiZqi5l78wACbHsTgRkOST239RhRqeimRu3rA9uf2poP38yHgmOSScDoAr4BDDKHk6mi~Vr9UoMvUwH4kNiSykhP68eftHTJGVXCfp7MoJ9n78vRoupWu~Xr9pXkfA5rCwTYX1bKsjj8XTfr~GWEU00~yzXyiwYBSKszTel3f1GCKbhtIcFkgh8kYZPpBhqOt0lTCgXMWTXK2q4PReOpcLtOgvc0mJbO4-k5MOERfgfQg4cV98KIj0w~D1q5su2KjmDULi1Qt4gr~gKvhLtUqjHU4Ea-Dryf9XwV~eRSGfGfNlQFkwD-PA~Pk6JYHFca42B~Ng__&Key-Pair-Id=APKAINTVSUGEWH5XD5UA","version":"432858726","role":"owner","nodes":{"121:10":{"document":{"id":"121:10","name":"color-1","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.94901961088180542,"g":0.30588236451148987,"b":0.11764705926179886,"a":1.0}},{"blendMode":"NORMAL","visible":false,"type":"SOLID","color":{"r":1.0,"g":0.0,"b":0.0,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"121:12":{"document":{"id":"121:12","name":"color-1-lighter","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1.0,"g":0.44705882668495178,"b":0.38431373238563538,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"121:16":{"document":{"id":"121:16","name":"color-2","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.63529413938522339,"g":0.34901961684226990,"b":1.0,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"121:17":{"document":{"id":"121:17","name":"color-3","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10196078568696976,"g":0.73725491762161255,"b":0.99607843160629272,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"121:18":{"document":{"id":"121:18","name":"color-4","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.039215687662363052,"g":0.81176471710205078,"b":0.51372551918029785,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"122:14":{"document":{"id":"122:14","name":"h1","type":"TEXT","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":0.0,"height":75.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[],"characters":"64px Roboto Regular","style":{"fontFamily":"Spinnaker","fontPostScriptName":"Spinnaker-Regular","fontWeight":400,"paragraphSpacing":4.0,"textCase":"TITLE","textAutoResize":"WIDTH_AND_HEIGHT","textDecoration":"UNDERLINE","fontSize":24.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":2.0,"lineHeightPx":30.0,"lineHeightPercent":106.66667175292969,"lineHeightPercentFontSize":125.0,"lineHeightUnit":"PIXELS"},"characterStyleOverrides":[],"styleOverrideTable":{}},"components":{},"schemaVersion":0,"styles":{}},"122:16":{"document":{"id":"122:16","name":"h2","type":"TEXT","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":0.0,"height":75.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[],"characters":"64px Roboto Regular","style":{"fontFamily":"Roboto","fontPostScriptName":null,"fontWeight":400,"textCase":"SMALL_CAPS_FORCED","textAutoResize":"WIDTH_AND_HEIGHT","fontSize":18.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"lineHeightPx":21.093750,"lineHeightPercent":100.0,"lineHeightUnit":"INTRINSIC_%"},"characterStyleOverrides":[],"styleOverrideTable":{}},"components":{},"schemaVersion":0,"styles":{}},"122:18":{"document":{"id":"122:18","name":"regular-text","type":"TEXT","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":0.0,"height":56.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[],"characters":"48px Roboto Regular","style":{"fontFamily":"Roboto Condensed","fontPostScriptName":"RobotoCondensed-Regular","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"lineHeightPx":16.406250,"lineHeightPercent":100.0,"lineHeightUnit":"INTRINSIC_%"},"characterStyleOverrides":[],"styleOverrideTable":{}},"components":{},"schemaVersion":0,"styles":{}},"124:8":{"document":{"id":"124:8","name":"drop-shadow","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[{"type":"DROP_SHADOW","visible":true,"color":{"r":0.0,"g":0.0,"b":0.0,"a":0.250},"blendMode":"NORMAL","offset":{"x":3.0,"y":4.0},"radius":7.0}]},"components":{},"schemaVersion":0,"styles":{}},"124:18":{"document":{"id":"124:18","name":"grid-12","type":"FRAME","blendMode":"PASS_THROUGH","children":[],"absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"clipsContent":true,"background":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0}}],"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":1.0,"g":1.0,"b":1.0,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","backgroundColor":{"r":1.0,"g":1.0,"b":1.0,"a":1.0},"layoutGrids":[{"pattern":"GRID","sectionSize":10.0,"visible":true,"color":{"r":1.0,"g":0.0,"b":0.0,"a":0.10000000149011612},"alignment":"MIN","gutterSize":0,"offset":0,"count":-1}],"effects":[]},"components":{},"schemaVersion":0,"styles":{}},"296:7":{"document":{"id":"296:7","name":"layer-blur","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[{"type":"LAYER_BLUR","visible":true,"radius":4.0}]},"components":{},"schemaVersion":0,"styles":{}},"330:1":{"document":{"id":"330:1","name":"unused-color","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.50416666269302368,"g":0.30250000953674316,"b":0.30250000953674316,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"336:5":{"document":{"id":"336:5","name":"color-alpha-50","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"opacity":0.50,"blendMode":"NORMAL","type":"SOLID","color":{"r":0.94901961088180542,"g":0.30588236451148987,"b":0.11764705926179886,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"339:0":{"document":{"id":"339:0","name":"color-linear-gradient","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"GRADIENT_LINEAR","gradientHandlePositions":[{"x":-5.5511151231257827e-16,"y":1.0},{"x":0.99999999999999933,"y":0.99999999999999922},{"x":-4.4408920985006262e-16,"y":1.50}],"gradientStops":[{"color":{"r":0.72122371196746826,"g":0.34901964664459229,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.039215687662363052,"g":0.81176471710205078,"b":0.51372551918029785,"a":1.0},"position":1.0}]}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"339:1":{"document":{"id":"339:1","name":"color-radial-gradient","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"GRADIENT_RADIAL","gradientHandlePositions":[{"x":0.49999999999999978,"y":0.49999999999999994},{"x":0.49999999999999967,"y":0.99999999999999989},{"x":-2.2204460492503131e-16,"y":0.49999999999999989}],"gradientStops":[{"color":{"r":0.63529413938522339,"g":0.34901961684226990,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.63529413938522339,"g":0.34901961684226990,"b":1.0,"a":0.0},"position":1.0}]}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"339:2":{"document":{"id":"339:2","name":"color-angular-gradient","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"GRADIENT_ANGULAR","gradientHandlePositions":[{"x":0.50,"y":0.49999999999999994},{"x":0.50,"y":0.99999999999999989},{"x":0.0,"y":0.50}],"gradientStops":[{"color":{"r":0.10196078568696976,"g":0.73725491762161255,"b":0.99607843160629272,"a":1.0},"position":0.0},{"color":{"r":0.10196078568696976,"g":0.73725491762161255,"b":0.99607843160629272,"a":0.0},"position":1.0}]}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"339:3":{"document":{"id":"339:3","name":"color-diamond-gradient","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"GRADIENT_DIAMOND","gradientHandlePositions":[{"x":0.50,"y":0.49999999999999994},{"x":0.50,"y":0.99999999999999989},{"x":0.0,"y":0.50}],"gradientStops":[{"color":{"r":0.039215687662363052,"g":0.81176471710205078,"b":0.51372551918029785,"a":1.0},"position":0.0},{"color":{"r":0.039215687662363052,"g":0.81176471710205078,"b":0.51372551918029785,"a":0.0},"position":1.0}]}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"339:5":{"document":{"id":"339:5","name":"color-linear-gradient-complex","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"GRADIENT_LINEAR","gradientHandlePositions":[{"x":-1.6653345369377348e-16,"y":-2.2204460492503131e-16},{"x":0.99999999999999978,"y":0.99999999999999978},{"x":-0.50000000000000022,"y":0.49999999999999978}],"gradientStops":[{"color":{"r":0.94901961088180542,"g":0.30588236451148987,"b":0.11764705926179886,"a":1.0},"position":0.0},{"color":{"r":0.72122371196746826,"g":0.34901964664459229,"b":1.0,"a":1.0},"position":0.343750},{"color":{"r":0.039215687662363052,"g":0.81176471710205078,"b":0.51372551918029785,"a":1.0},"position":0.64583331346511841},{"color":{"r":0.10196078568696976,"g":0.73725491762161255,"b":0.99607843160629272,"a":1.0},"position":1.0}]}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"339:7":{"document":{"id":"339:7","name":"color-image","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"IMAGE","scaleMode":"FILL","imageRef":"fa58454b70245545d8e5cafcfb9734a0ece9cfd8"}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"341:2":{"document":{"id":"341:2","name":"color-linear-gradient-alpha","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"GRADIENT_LINEAR","gradientHandlePositions":[{"x":2.8312212019265814e-09,"y":0.35000001664459657},{"x":0.99999998936057011,"y":0.60999997178018195},{"x":-0.12999997473657152,"y":0.85000000990927094}],"gradientStops":[{"color":{"r":0.72122371196746826,"g":0.34901964664459229,"b":1.0,"a":1.0},"position":0.0},{"color":{"r":0.039215683937072754,"g":0.81176471710205078,"b":0.51372551918029785,"a":0.0},"position":1.0}]}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"376:2":{"document":{"id":"376:2","name":"inner-shadow","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[{"type":"INNER_SHADOW","visible":true,"color":{"r":0.94901961088180542,"g":0.30588236451148987,"b":0.11764705926179886,"a":0.50},"blendMode":"NORMAL","offset":{"x":4.0,"y":5.0},"radius":10.0}]},"components":{},"schemaVersion":0,"styles":{}},"376:9":{"document":{"id":"376:9","name":"background-blur","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[{"type":"BACKGROUND_BLUR","visible":true,"radius":4.0}]},"components":{},"schemaVersion":0,"styles":{}},"376:13":{"document":{"id":"376:13","name":"mixed-effects","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[{"type":"BACKGROUND_BLUR","visible":true,"radius":4.0},{"type":"LAYER_BLUR","visible":true,"radius":4.0},{"type":"DROP_SHADOW","visible":true,"color":{"r":0.0,"g":0.0,"b":0.0,"a":0.250},"blendMode":"NORMAL","offset":{"x":0.0,"y":4.0},"radius":4.0},{"type":"INNER_SHADOW","visible":true,"color":{"r":0.0,"g":0.0,"b":0.0,"a":0.250},"blendMode":"NORMAL","offset":{"x":0.0,"y":4.0},"radius":4.0}]},"components":{},"schemaVersion":0,"styles":{}},"376:15":{"document":{"id":"376:15","name":"inner-shadow-bottom","type":"RECTANGLE","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[{"type":"INNER_SHADOW","visible":true,"color":{"r":0.94901961088180542,"g":0.30588236451148987,"b":0.11764705926179886,"a":0.50},"blendMode":"NORMAL","offset":{"x":-4.0,"y":-5.0},"radius":10.0}]},"components":{},"schemaVersion":0,"styles":{}},"400:33":{"document":{"id":"400:33","name":"deleted-text","type":"TEXT","blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":0.0,"height":16.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[],"characters":"14px Roboto Condensed Bold","style":{"fontFamily":"Roboto Condensed","fontPostScriptName":"RobotoCondensed-Bold","fontWeight":700,"textCase":"LOWER","textAutoResize":"WIDTH_AND_HEIGHT","textDecoration":"STRIKETHROUGH","fontSize":14.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"lineHeightPx":16.406250,"lineHeightPercent":100.0,"lineHeightUnit":"INTRINSIC_%"},"characterStyleOverrides":[],"styleOverrideTable":{}},"components":{},"schemaVersion":0,"styles":{}},"254:1":{"document":{"id":"254:1","name":"black","visible":false,"type":"RECTANGLE","locked":true,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.10588235408067703,"g":0.12156862765550613,"b":0.13725490868091583,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}},"254:2":{"document":{"id":"254:2","name":"f2","visible":false,"type":"TEXT","locked":true,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.76862746477127075,"g":0.76862746477127075,"b":0.76862746477127075,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[],"characters":"24px SF Pro Text Regular","style":{"fontFamily":"SF Pro Text","fontPostScriptName":"SFProText-Regular","fontWeight":400,"textAutoResize":"WIDTH_AND_HEIGHT","fontSize":24.0,"textAlignHorizontal":"LEFT","textAlignVertical":"TOP","letterSpacing":0.0,"lineHeightPx":36.0,"lineHeightPercent":128.0,"lineHeightPercentFontSize":150.0,"lineHeightUnit":"PIXELS"},"layoutVersion":0,"characterStyleOverrides":[],"styleOverrideTable":{}},"components":{},"schemaVersion":0,"styles":{}},"254:3":{"document":{"id":"254:3","name":"#E1E4E8","visible":false,"type":"RECTANGLE","locked":true,"blendMode":"PASS_THROUGH","absoluteBoundingBox":{"x":0.0,"y":0.0,"width":100.0,"height":100.0},"constraints":{"vertical":"TOP","horizontal":"LEFT"},"fills":[{"blendMode":"NORMAL","type":"SOLID","color":{"r":0.88235294818878174,"g":0.89411765336990356,"b":0.90980392694473267,"a":1.0}}],"strokes":[],"strokeWeight":1.0,"strokeAlign":"INSIDE","effects":[]},"components":{},"schemaVersion":0,"styles":{}}}} diff --git a/packages/core/src/lib/_mocks_/figma.files.json b/packages/core/src/lib/_mocks_/figma.files.json new file mode 100644 index 00000000..dc48ca49 --- /dev/null +++ b/packages/core/src/lib/_mocks_/figma.files.json @@ -0,0 +1,47642 @@ +{ + "document": { + "id": "0:0", + "name": "Document", + "type": "DOCUMENT", + "children": [ + { + "id": "120:3", + "name": "cover", + "type": "CANVAS", + "children": [ + { + "id": "120:4", + "name": "cover", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "120:5", + "name": "badge", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "120:9", + "name": "figma-logo", + "type": "INSTANCE", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "I120:9;56:1", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 253.0, + "y": 93.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "I120:9;56:2", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 233.0, + "y": 113.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "I120:9;56:3", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 253.0, + "y": 73.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "I120:9;56:4", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 233.0, + "y": 73.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "I120:9;56:5", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 233.0, + "y": 93.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 233.0, + "y": 73.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [], + "componentId": "56:6" + } + ], + "absoluteBoundingBox": { + "x": 205.0, + "y": 55.0, + "width": 96.0, + "height": 96.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "effects": [] + }, + { + "id": "120:6", + "name": "title", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "120:7", + "name": "subtitle", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -279.0, + "y": -129.0, + "width": 556.0, + "height": 40.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "effects": [], + "characters": "@figma-export", + "style": { + "fontFamily": "Roboto", + "fontPostScriptName": "Roboto-Medium", + "fontWeight": 500, + "fontSize": 32.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 48.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 0, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "120:8", + "name": "title", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -279.0, + "y": -84.0, + "width": 556.0, + "height": 21.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "effects": [], + "characters": "Export tool for Figma", + "style": { + "fontFamily": "Roboto", + "fontPostScriptName": null, + "fontWeight": 400, + "textAutoResize": "HEIGHT", + "fontSize": 14.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 21.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 1, + "characterStyleOverrides": [], + "styleOverrideTable": {} + } + ], + "absoluteBoundingBox": { + "x": -279.0, + "y": -129.0, + "width": 556.0, + "height": 66.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -311.0, + "y": -161.0, + "width": 620.0, + "height": 320.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [ + { + "pattern": "ROWS", + "sectionSize": 4.0, + "visible": true, + "color": { + "r": 0.73333334922790527, + "g": 0.41960784792900085, + "b": 0.85098040103912354, + "a": 0.20000000298023224 + }, + "alignment": "MIN", + "gutterSize": 4.0, + "offset": 0.0, + "count": -1 + } + ], + "effects": [] + } + ], + "backgroundColor": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + }, + "prototypeStartNodeID": null, + "prototypeDevice": { + "type": "NONE", + "rotation": "NONE" + } + }, + { + "id": "0:1", + "name": "icons", + "type": "CANVAS", + "children": [ + { + "id": "101:0", + "name": "figma-arrow", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "100:7", + "name": "Arrow", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -265.0, + "y": -76.0, + "width": 40.0, + "height": 0.0 + }, + "preserveRatio": true, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_LINEAR", + "gradientHandlePositions": [ + { + "x": 2.7755575615628914e-16, + "y": 0.0 + }, + { + "x": 1.0000000000000002, + "y": 1.1368683772161603e-13 + }, + { + "x": -5.7169951134268153e-14, + "y": 800.00001788139389 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + }, + "position": 0.32004430890083313 + }, + { + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + }, + "position": 0.6718750 + }, + { + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + }, + "position": 1.0 + } + ] + } + ], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -265.0, + "y": -76.0, + "width": 40.0, + "height": 0.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "54:22", + "name": "figma-export", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "105:18", + "name": "figma-export", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "53:5", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -318.0, + "y": -101.0, + "width": 22.0, + "height": 19.999998092651367 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_ANGULAR", + "gradientHandlePositions": [ + { + "x": 0.50, + "y": 0.49999999999999994 + }, + { + "x": 0.50, + "y": 0.99999999999999989 + }, + { + "x": 0.0, + "y": 0.50 + } + ], + "gradientStops": [ + { + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + }, + "position": 0.35416665673255920 + }, + { + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + }, + "position": 0.68229168653488159 + }, + { + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 0.99780195951461792, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "53:6", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -355.0, + "y": -97.439826965332031, + "width": 56.478443145751953, + "height": 44.701812744140625 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_LINEAR", + "gradientHandlePositions": [ + { + "x": 0.50, + "y": -3.0616171314629196e-17 + }, + { + "x": 0.50, + "y": 0.99999999999999989 + }, + { + "x": 0.0, + "y": 0.0 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + }, + "position": 0.35738232731819153 + }, + { + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + }, + "position": 0.7031250 + }, + { + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 0.99780195951461792, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -355.0, + "y": -101.0, + "width": 59.0, + "height": 48.261985778808594 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "105:17", + "name": "figma-logo", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "105:9", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -335.0, + "y": -81.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "105:10", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -347.0, + "y": -69.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "105:11", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -335.0, + "y": -93.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "105:12", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -347.0, + "y": -93.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "105:13", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -347.0, + "y": -81.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -347.0, + "y": -93.0, + "width": 24.0, + "height": 36.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -355.0, + "y": -106.0, + "width": 60.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "WIDTH", + "value": 512.0 + } + } + ], + "effects": [] + }, + { + "id": "56:6", + "name": "figma-logo", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "56:1", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -405.0, + "y": -86.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "56:2", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -425.0, + "y": -66.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "56:3", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -405.0, + "y": -106.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "56:4", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -425.0, + "y": -106.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "56:5", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -425.0, + "y": -86.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -425.0, + "y": -106.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "backgroundColor": { + "r": 0.89803922176361084, + "g": 0.89803922176361084, + "b": 0.89803922176361084, + "a": 1.0 + }, + "prototypeStartNodeID": null, + "prototypeDevice": { + "type": "NONE", + "rotation": "NONE" + } + }, + { + "id": "11:2", + "name": "monochrome", + "type": "CANVAS", + "children": [ + { + "id": "58:7", + "name": "figma-green", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "58:4", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -220.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -220.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "58:8", + "name": "figma-blue", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "58:3", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -287.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -287.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "58:6", + "name": "figma-purple", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "58:5", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -354.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -354.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "14:8", + "name": "figma-red", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "14:9", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -421.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -421.0, + "y": -104.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "backgroundColor": { + "r": 0.89803922176361084, + "g": 0.89803922176361084, + "b": 0.89803922176361084, + "a": 1.0 + }, + "prototypeStartNodeID": null, + "prototypeDevice": { + "type": "NONE", + "rotation": "NONE" + } + }, + { + "id": "138:28", + "name": "unit-test", + "type": "CANVAS", + "children": [ + { + "id": "138:52", + "name": "figma default logo", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "138:47", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -368.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:48", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -388.0, + "y": -75.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:49", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -368.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:50", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -388.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:51", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -388.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -388.0, + "y": -115.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "138:76", + "name": "figma/logo", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "138:66", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -438.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:67", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -458.0, + "y": -75.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:68", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -438.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:69", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -458.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:70", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -458.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -458.0, + "y": -115.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "138:89", + "name": "figma/logo/main", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "138:84", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -508.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:85", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -528.0, + "y": -75.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:86", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -508.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:87", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -528.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:88", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -528.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -528.0, + "y": -115.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "138:102", + "name": "figma/logo/main (bright)", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "138:97", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -578.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:98", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -598.0, + "y": -75.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:99", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -578.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:100", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -598.0, + "y": -115.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "138:101", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -598.0, + "y": -95.0, + "width": 20.0, + "height": 20.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -598.0, + "y": -115.0, + "width": 40.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "backgroundColor": { + "r": 0.89803922176361084, + "g": 0.89803922176361084, + "b": 0.89803922176361084, + "a": 1.0 + }, + "prototypeStartNodeID": null, + "prototypeDevice": { + "type": "NONE", + "rotation": "NONE" + } + }, + { + "id": "254:0", + "name": "octicons-by-github", + "type": "CANVAS", + "children": [ + { + "id": "254:4", + "name": "Symbols", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:5", + "name": "Subhead", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:6", + "name": "Symbols", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 370.0, + "width": 640.0, + "height": 36.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "254:1", + "text": "254:2" + }, + "effects": [], + "characters": "Symbols", + "style": { + "fontFamily": "SF Pro Text", + "fontPostScriptName": "SFProText-Regular", + "fontWeight": 400, + "textAutoResize": "HEIGHT", + "fontSize": 24.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "CENTER", + "letterSpacing": 0.0, + "lineHeightPx": 36.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 0, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "254:7", + "name": "Line", + "type": "LINE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 414.0, + "width": 640.0, + "height": 0.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.88235294818878174, + "g": 0.89411765336990356, + "b": 0.90980392694473267, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "stroke": "254:3" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 370.0, + "width": 640.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "254:8", + "name": "Symbols", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:9", + "name": "plus", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:10", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -59.0, + "y": 540.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -59.0, + "y": 538.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:11", + "name": "primitive-dot", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:12", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -19.0, + "y": 542.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -19.0, + "y": 538.0, + "width": 8.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:13", + "name": "primitive-square", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:14", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 542.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 538.0, + "width": 8.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:15", + "name": "quote", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:16", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:17", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -247.0, + "y": 539.65997314453125, + "width": 6.1599998474121094, + "height": 12.670000076293945 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:18", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -239.99000549316406, + "y": 539.65997314453125, + "width": 6.1599998474121094, + "height": 12.670000076293945 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -247.0, + "y": 539.65997314453125, + "width": 13.170000076293945, + "height": 12.670000076293945 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -247.0, + "y": 538.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:19", + "name": "three-bars", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:20", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:21", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -286.0, + "y": 545.0, + "width": 11.989999771118164, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:22", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -286.0, + "y": 541.0, + "width": 11.989999771118164, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:23", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -286.0, + "y": 549.0, + "width": 11.989999771118164, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -286.0, + "y": 541.0, + "width": 11.989999771118164, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -286.0, + "y": 538.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:24", + "name": "triangle-down", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:25", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -205.0, + "y": 543.0, + "width": 12.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -205.0, + "y": 538.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:26", + "name": "triangle-left", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:27", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -166.0, + "y": 540.0, + "width": 6.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -166.0, + "y": 538.0, + "width": 6.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:28", + "name": "triangle-right", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:29", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -132.0, + "y": 540.0, + "width": 6.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -132.0, + "y": 538.0, + "width": 6.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:30", + "name": "triangle-up", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:31", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -98.0, + "y": 543.0, + "width": 12.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -98.0, + "y": 538.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:32", + "name": "kebab-horizontal", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:33", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:34", + "name": "Oval", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 87.0, + "y": 544.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:35", + "name": "Oval Copy", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 92.0, + "y": 544.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:36", + "name": "Oval Copy 2", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 97.0, + "y": 544.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 87.0, + "y": 544.0, + "width": 13.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 87.0, + "y": 538.0, + "width": 13.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:37", + "name": "kebab-vertical", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:38", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:39", + "name": "Oval", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 56.0, + "y": 539.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:40", + "name": "Oval Copy", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 56.0, + "y": 544.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:41", + "name": "Oval Copy 2", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 56.0, + "y": 549.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 56.0, + "y": 539.0, + "width": 3.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 56.0, + "y": 538.0, + "width": 3.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:42", + "name": "screen-full", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:43", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:44", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 13.0, + "y": 512.0, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:45", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 3.0, + "y": 512.0, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:46", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 3.0, + "y": 504.0, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:47", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 5.0, + "y": 506.0, + "width": 10.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:48", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 7.0, + "y": 508.0, + "width": 6.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:49", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 13.0, + "y": 504.0, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 3.0, + "y": 504.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 3.0, + "y": 502.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:50", + "name": "screen-normal", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:51", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:52", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 156.0, + "y": 503.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:53", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 156.0, + "y": 514.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:54", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 159.0, + "y": 507.0, + "width": 8.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:55", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 161.0, + "y": 509.0, + "width": 4.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:56", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 167.0, + "y": 514.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:57", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 167.0, + "y": 503.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 156.0, + "y": 503.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 156.0, + "y": 502.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:58", + "name": "x", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:59", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -171.22999572753906, + "y": 504.76998901367188, + "width": 10.460000038146973, + "height": 10.460000038146973 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "WIDTH", + "value": 150.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -172.0, + "y": 502.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:60", + "name": "grabber", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:61", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:62", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -136.0, + "y": 506.0, + "width": 8.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:63", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -136.0, + "y": 509.0, + "width": 8.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:64", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -136.0, + "y": 512.0, + "width": 8.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -136.0, + "y": 506.0, + "width": 8.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -136.0, + "y": 502.0, + "width": 8.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:65", + "name": "plus-small", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:66", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:67", + "name": "Rectangle 1", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -63.0, + "y": 506.0, + "width": 1.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:68", + "name": "Rectangle 2", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -66.0, + "y": 509.0, + "width": 7.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -66.0, + "y": 506.0, + "width": 7.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -66.0, + "y": 502.0, + "width": 7.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:69", + "name": "pulse", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:70", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 503.60000610351562, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 502.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:71", + "name": "star", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:72", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 40.0, + "y": 503.0, + "width": 14.0, + "height": 13.0 + }, + "preserveRatio": true, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 40.0, + "y": 502.0, + "width": 14.0, + "height": 16.0 + }, + "preserveRatio": true, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:73", + "name": "stop", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:74", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:75", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 193.0, + "y": 503.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:76", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 194.0, + "y": 504.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:77", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 199.0, + "y": 506.0, + "width": 2.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:78", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 199.0, + "y": 512.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 193.0, + "y": 503.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 193.0, + "y": 502.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:79", + "name": "sync", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:80", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:81", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 271.50, + "y": 509.39999389648438, + "width": 11.495737075805664, + "height": 6.5999999046325684 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:82", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 271.00418090820312, + "y": 504.0, + "width": 11.495824813842773, + "height": 6.6100001335144043 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 271.00418090820312, + "y": 504.0, + "width": 11.991561889648438, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 271.0, + "y": 502.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:83", + "name": "text-size", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:84", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:85", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 240.53999328613281, + "y": 505.66000366210938, + "width": 3.0799999237060547, + "height": 5.4200000762939453 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:86", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 233.32000732421875, + "y": 508.01998901367188, + "width": 2.3800001144409180, + "height": 4.1100001335144043 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:87", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 230.0, + "y": 504.0, + "width": 17.319999694824219, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 230.0, + "y": 504.0, + "width": 17.319999694824219, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 230.0, + "y": 502.0, + "width": 18.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:88", + "name": "report", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:89", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:90", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -35.0, + "y": 504.0, + "width": 14.0, + "height": 11.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:91", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -36.0, + "y": 503.0, + "width": 16.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:92", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -29.0, + "y": 510.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:93", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -29.0, + "y": 505.0, + "width": 2.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -36.0, + "y": 503.0, + "width": 16.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -36.0, + "y": 502.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:94", + "name": "link-external", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:95", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:96", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 306.0, + "y": 504.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:97", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 311.0, + "y": 504.0, + "width": 7.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 306.0, + "y": 504.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 306.0, + "y": 502.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:98", + "name": "checklist", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:99", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:100", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 84.0, + "y": 509.0, + "width": 9.0, + "height": 7.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:101", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 78.0, + "y": 504.0, + "width": 9.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:102", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 81.0, + "y": 505.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:103", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 81.0, + "y": 507.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:104", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 81.0, + "y": 509.0, + "width": 3.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:105", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 79.0, + "y": 511.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:106", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 79.0, + "y": 509.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:107", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 79.0, + "y": 507.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:108", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 79.0, + "y": 505.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 78.0, + "y": 504.0, + "width": 15.0, + "height": 12.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 77.0, + "y": 502.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:109", + "name": "cloud-download", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:110", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:111", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 121.0, + "y": 509.0, + "width": 6.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:112", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 116.0, + "y": 503.0, + "width": 16.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 116.0, + "y": 503.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 116.0, + "y": 502.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:113", + "name": "cloud-upload", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:114", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:115", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -280.0, + "y": 508.0, + "width": 6.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:116", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -285.0, + "y": 504.0, + "width": 16.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -285.0, + "y": 504.0, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -285.0, + "y": 502.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:117", + "name": "fold-up", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:118", + "name": "Fold up", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:119", + "name": "Subtract", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "SUBTRACT", + "children": [ + { + "id": "254:120", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 120.0, + "y": 543.0, + "width": 14.0, + "height": 7.0 + }, + "constraints": { + "vertical": "CENTER", + "horizontal": "CENTER" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:121", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 125.0, + "y": 546.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "CENTER", + "horizontal": "CENTER" + }, + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 120.0, + "y": 543.0, + "width": 14.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:122", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 124.0, + "y": 541.0, + "width": 6.0, + "height": 9.0 + }, + "constraints": { + "vertical": "CENTER", + "horizontal": "CENTER" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 120.0, + "y": 541.0, + "width": 14.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 120.0, + "y": 538.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:123", + "name": "fold-down", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:124", + "name": "Fold down", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:125", + "name": "Subtract", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "SUBTRACT", + "children": [ + { + "id": "254:126", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 152.0, + "y": 543.0, + "width": 14.000000953674316, + "height": 7.0000014305114746 + }, + "constraints": { + "vertical": "CENTER", + "horizontal": "CENTER" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:127", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 157.0, + "y": 546.0, + "width": 4.0, + "height": 1.0000003576278687 + }, + "constraints": { + "vertical": "CENTER", + "horizontal": "CENTER" + }, + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 152.0, + "y": 543.0, + "width": 13.999999046325684, + "height": 7.0000033378601074 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:128", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 156.0, + "y": 543.0, + "width": 6.0000009536743164, + "height": 9.0000009536743164 + }, + "constraints": { + "vertical": "CENTER", + "horizontal": "CENTER" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 152.0, + "y": 543.0, + "width": 13.999999046325684, + "height": 9.0000019073486328 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 152.0, + "y": 538.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:129", + "name": "fold", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:130", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:131", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -242.0, + "y": 511.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:132", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -242.0, + "y": 502.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:133", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": 506.0, + "width": 14.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -246.0, + "y": 502.0, + "width": 14.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -246.0, + "y": 502.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:134", + "name": "tasklist", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:135", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:136", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -98.0, + "y": 509.0, + "width": 8.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:137", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -96.0, + "y": 504.0, + "width": 6.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:138", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -105.0, + "y": 502.0, + "width": 8.50, + "height": 6.9099998474121094 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:139", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -98.0, + "y": 514.0, + "width": 8.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -105.0, + "y": 502.0, + "width": 15.989999771118164, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -105.0, + "y": 502.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:140", + "name": "history", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:141", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:142", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -203.0, + "y": 508.0, + "width": 5.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:143", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -209.0, + "y": 503.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -209.0, + "y": 503.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -209.0, + "y": 502.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:144", + "name": "dash", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:145", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -136.0, + "y": 473.0, + "width": 8.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -136.0, + "y": 466.0, + "width": 8.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:146", + "name": "list-ordered", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:147", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:148", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -317.9899902343750, + "y": 478.0, + "width": 8.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:149", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -317.9899902343750, + "y": 468.0, + "width": 7.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:150", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -317.9899902343750, + "y": 473.0, + "width": 7.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:151", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -321.82998657226562, + "y": 467.0, + "width": 2.8399999141693115, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:152", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 472.0, + "width": 3.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:153", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -321.9899902343750, + "y": 476.91000366210938, + "width": 2.9400000572204590, + "height": 4.0900001525878906 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 467.0, + "width": 12.010000228881836, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 466.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:154", + "name": "list-unordered", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:155", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:156", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -287.0, + "y": 478.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:157", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -283.0, + "y": 468.0, + "width": 7.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:158", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -287.0, + "y": 473.0, + "width": 1.9900000095367432, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:159", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -287.0, + "y": 468.0, + "width": 1.9900000095367432, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:160", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -283.0, + "y": 473.0, + "width": 7.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:161", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -283.0, + "y": 478.0, + "width": 7.9899997711181641, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -287.0, + "y": 468.0, + "width": 11.989999771118164, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -287.0, + "y": 466.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:162", + "name": "reply", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:163", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -104.50, + "y": 466.0, + "width": 13.50, + "height": 13.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -105.0, + "y": 466.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:164", + "name": "mute", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:165", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:166", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 83.0, + "y": 468.05944824218750, + "width": 8.0, + "height": 11.881086349487305 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:167", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 92.470001220703125, + "y": 470.97000122070312, + "width": 6.0599999427795410, + "height": 6.0599999427795410 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 83.0, + "y": 468.05944824218750, + "width": 15.529999732971191, + "height": 11.881086349487305 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 83.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:168", + "name": "comment-discussion", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:169", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:170", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -252.0, + "y": 467.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:171", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -251.0, + "y": 471.0, + "width": 8.0, + "height": 7.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:172", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": 468.0, + "width": 9.0, + "height": 7.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -252.0, + "y": 467.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -252.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:173", + "name": "comment", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:174", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:175", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -174.0, + "y": 467.0, + "width": 14.0, + "height": 13.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:176", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -173.0, + "y": 468.0, + "width": 12.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -174.0, + "y": 467.0, + "width": 14.0, + "height": 13.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -175.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:177", + "name": "ellipsis", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:178", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:179", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 232.0, + "y": 471.0, + "width": 12.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:180", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 234.0, + "y": 473.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:181", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 237.0, + "y": 473.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:182", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 240.0, + "y": 473.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 232.0, + "y": 471.0, + "width": 12.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 232.0, + "y": 466.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:183", + "name": "heart", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:184", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 48.0, + "y": 468.0, + "width": 12.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 48.0, + "y": 466.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:185", + "name": "horizontal-rule", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:186", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:187", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 198.0, + "y": 469.0, + "width": 4.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:188", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 207.0, + "y": 473.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:189", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 207.0, + "y": 470.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:190", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 204.0, + "y": 469.0, + "width": 3.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:191", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 198.0, + "y": 477.0, + "width": 10.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 198.0, + "y": 469.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 198.0, + "y": 466.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:192", + "name": "info", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:193", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:194", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 273.01998901367188, + "y": 470.0100097656250, + "width": 1.9600000381469727, + "height": 1.9800000190734863 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:195", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 272.0, + "y": 472.99002075195312, + "width": 4.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:196", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 268.29998779296875, + "y": 468.29000854492188, + "width": 11.399999618530273, + "height": 11.390000343322754 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:197", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 267.0, + "y": 466.98001098632812, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 267.0, + "y": 466.98001098632812, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 267.0, + "y": 466.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:198", + "name": "italic", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:199", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:200", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 305.0, + "y": 471.0, + "width": 3.7899999618530273, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:201", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 307.17001342773438, + "y": 467.0, + "width": 2.4600000381469727, + "height": 2.3299999237060547 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 305.0, + "y": 467.0, + "width": 4.6300001144409180, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 304.0, + "y": 466.0, + "width": 6.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:202", + "name": "unverified", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:203", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:204", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -68.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:205", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -60.999992370605469, + "y": 476.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:206", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -62.979995727539062, + "y": 470.0, + "width": 5.6399998664855957, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -68.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -68.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:207", + "name": "verified", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:208", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:209", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 9.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "preserveRatio": true, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:210", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 11.999990463256836, + "y": 470.0100097656250, + "width": 10.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 9.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 9.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:211", + "name": "question", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:212", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:213", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -206.0, + "y": 476.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:214", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -208.0, + "y": 470.0, + "width": 6.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:215", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -210.69999694824219, + "y": 468.29998779296875, + "width": 11.399999618530273, + "height": 11.399999618530273 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:216", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -212.0, + "y": 467.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -212.0, + "y": 467.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -212.0, + "y": 466.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:217", + "name": "unfold", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:218", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:219", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -29.0, + "y": 470.0, + "width": 14.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:220", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -25.0, + "y": 466.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:221", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -25.0, + "y": 475.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -29.0, + "y": 466.0, + "width": 14.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -29.0, + "y": 466.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:222", + "name": "sign-in", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:223", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 123.0, + "y": 466.0, + "width": 13.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 122.0, + "y": 466.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:224", + "name": "sign-out", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:225", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:226", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 167.0, + "y": 469.0, + "width": 8.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:227", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 159.0, + "y": 466.0, + "width": 11.0, + "height": 16.010000228881836 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 159.0, + "y": 466.0, + "width": 16.0, + "height": 16.010000228881836 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 159.0, + "y": 466.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:228", + "name": "alert", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:229", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:230", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 431.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:231", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -315.0129394531250, + "y": 440.99426269531250, + "width": 2.0385270118713379, + "height": 2.0028612613677979 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:232", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -315.0129394531250, + "y": 435.98712158203125, + "width": 2.0385270118713379, + "height": 4.0057225227355957 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 431.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 430.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:233", + "name": "arrow-down", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:234", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -279.0, + "y": 433.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -279.0, + "y": 430.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:235", + "name": "arrow-left", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:236", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -243.0, + "y": 433.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -243.0, + "y": 430.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:237", + "name": "arrow-right", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:238", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -206.0, + "y": 433.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -206.0, + "y": 430.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:239", + "name": "arrow-up", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:240", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -169.0, + "y": 433.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -169.0, + "y": 430.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:241", + "name": "arrow-both", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:242", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -132.0, + "y": 433.0, + "width": 20.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -132.0, + "y": 430.0, + "width": 20.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:243", + "name": "arrow-small-down", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:244", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -86.0, + "y": 435.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -86.0, + "y": 430.0, + "width": 6.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:245", + "name": "arrow-small-left", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:246", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -53.0, + "y": 435.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -53.0, + "y": 430.0, + "width": 6.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:247", + "name": "arrow-small-right", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:248", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -20.0, + "y": 435.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -20.0, + "y": 430.0, + "width": 6.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:249", + "name": "arrow-small-up", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:250", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 12.0, + "y": 435.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 12.0, + "y": 430.0, + "width": 6.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:251", + "name": "check", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:252", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 122.0, + "y": 433.50, + "width": 12.0, + "height": 9.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 122.0, + "y": 430.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:253", + "name": "chevron-down", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:254", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 161.0, + "y": 434.50, + "width": 10.0, + "height": 6.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 161.0, + "y": 430.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:255", + "name": "chevron-left", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:256", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 198.50, + "y": 433.0, + "width": 6.50, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 198.0, + "y": 430.0, + "width": 8.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:257", + "name": "chevron-right", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:258", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 234.0, + "y": 433.0, + "width": 6.50, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 233.0, + "y": 430.0, + "width": 8.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:259", + "name": "chevron-up", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:260", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 267.0, + "y": 435.0, + "width": 10.0, + "height": 6.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 267.0, + "y": 430.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:261", + "name": "circle-slash", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:262", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:263", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 304.0, + "y": 431.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:264", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 305.29998779296875, + "y": 432.29998779296875, + "width": 9.1700000762939453, + "height": 9.1700000762939453 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:265", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 307.52999877929688, + "y": 434.54000854492188, + "width": 9.1700000762939453, + "height": 9.1700000762939453 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 304.0, + "y": 431.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 304.0, + "y": 430.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:266", + "name": "bold", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:267", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:268", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 46.0, + "y": 432.0, + "width": 8.7600002288818359, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:269", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 48.130001068115234, + "y": 433.64999389648438, + "width": 3.9100000858306885, + "height": 3.2999999523162842 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:270", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 48.130001068115234, + "y": 438.54998779296875, + "width": 4.5500001907348633, + "height": 3.7999999523162842 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 46.0, + "y": 432.0, + "width": 8.7600002288818359, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 45.0, + "y": 430.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:271", + "name": "mention", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:272", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:273", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 82.0, + "y": 430.0, + "width": 14.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:274", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 86.910003662109375, + "y": 435.10998535156250, + "width": 3.6600000858306885, + "height": 4.9000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 82.0, + "y": 430.0, + "width": 14.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 82.0, + "y": 430.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:275", + "name": "skip", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:276", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 192.0, + "y": 539.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 191.0, + "y": 538.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:277", + "name": "primitive-dot-stroke", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:278", + "name": "Ellipse 1 (Stroke)", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 17.0, + "y": 541.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.50, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 17.0, + "y": 537.0, + "width": 8.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -323.0, + "y": 430.0, + "width": 641.0, + "height": 124.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -323.0, + "y": 370.0, + "width": 641.0, + "height": 184.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "effects": [] + }, + { + "id": "254:279", + "name": "Objects", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:280", + "name": "Subhead", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:281", + "name": "Objects", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 142.0, + "width": 640.0, + "height": 36.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "254:1", + "text": "254:2" + }, + "effects": [], + "characters": "Objects", + "style": { + "fontFamily": "SF Pro Text", + "fontPostScriptName": "SFProText-Regular", + "fontWeight": 400, + "textAutoResize": "HEIGHT", + "fontSize": 24.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "CENTER", + "letterSpacing": 0.0, + "lineHeightPx": 36.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 0, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "254:282", + "name": "Line", + "type": "LINE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 186.0, + "width": 640.0, + "height": 0.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.88235294818878174, + "g": 0.89411765336990356, + "b": 0.90980392694473267, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "stroke": "254:3" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 142.0, + "width": 640.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "254:283", + "name": "Objects", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:284", + "name": "beaker", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:285", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:286", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -219.46000671386719, + "y": 276.0, + "width": 13.935577392578125, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:287", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -216.25027465820312, + "y": 277.0, + "width": 7.50, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:288", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -212.00027465820312, + "y": 282.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:289", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -214.00027465820312, + "y": 280.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:290", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -213.00027465820312, + "y": 278.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:291", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -214.00027465820312, + "y": 274.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -219.46000671386719, + "y": 274.0, + "width": 13.935577392578125, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -220.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:292", + "name": "bell", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:293", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:294", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -150.0, + "y": 275.0, + "width": 14.010000228881836, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:295", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -145.0, + "y": 288.0, + "width": 4.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -150.0, + "y": 275.0, + "width": 14.010000228881836, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -150.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:296", + "name": "briefcase", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:297", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:298", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 19.0, + "y": 276.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:299", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 25.0, + "y": 277.0, + "width": 2.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:300", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 20.0, + "y": 279.0, + "width": 12.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 19.0, + "y": 276.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 19.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:301", + "name": "credit-card", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:302", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:303", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -253.0, + "y": 282.0, + "width": 10.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:304", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -255.0, + "y": 276.0, + "width": 16.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:305", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -254.0, + "y": 280.0, + "width": 14.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:306", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -254.0, + "y": 277.0, + "width": 14.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:307", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -253.0, + "y": 284.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -255.0, + "y": 276.0, + "width": 16.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -255.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:308", + "name": "device-camera-video", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:309", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -185.0, + "y": 275.9987792968750, + "width": 16.0, + "height": 11.002434730529785 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -185.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:310", + "name": "device-camera", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:311", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:312", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -116.0, + "y": 276.0, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:313", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -114.0, + "y": 278.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:314", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -109.0, + "y": 279.0, + "width": 7.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:315", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -108.0, + "y": 280.0, + "width": 5.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -116.0, + "y": 276.0, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -116.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:316", + "name": "device-desktop", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:317", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:318", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -81.0, + "y": 276.0, + "width": 16.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:319", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -80.0, + "y": 277.0, + "width": 14.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -81.0, + "y": 276.0, + "width": 16.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -81.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:320", + "name": "device-mobile", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:321", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:322", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -11.0, + "y": 274.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:323", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -7.3000001907348633, + "y": 286.70001220703125, + "width": 2.5999999046325684, + "height": 2.5999999046325684 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:324", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -10.0, + "y": 276.0, + "width": 8.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -11.0, + "y": 274.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -11.0, + "y": 274.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:325", + "name": "gift", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:326", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:327", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -288.01998901367188, + "y": 275.0, + "width": 13.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:328", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.19000244140625, + "y": 275.79000854492188, + "width": 3.4031596183776855, + "height": 2.2000000476837158 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:329", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -285.20315551757812, + "y": 275.79000854492188, + "width": 3.4031596183776855, + "height": 2.2100000381469727 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:330", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -286.0, + "y": 282.0, + "width": 4.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:331", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -287.0, + "y": 279.0, + "width": 5.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:332", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.0, + "y": 282.0, + "width": 4.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:333", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.0, + "y": 279.0, + "width": 5.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -288.01998901367188, + "y": 275.0, + "width": 13.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -289.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:334", + "name": "gear", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:335", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:336", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 275.0100097656250, + "width": 14.0, + "height": 13.970000267028809 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:337", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -318.0, + "y": 279.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 275.0100097656250, + "width": 14.0, + "height": 13.970000267028809 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:338", + "name": "book", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:339", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:340", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -43.0, + "y": 279.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:341", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -43.0, + "y": 281.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:342", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -43.0, + "y": 283.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:343", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -36.0, + "y": 279.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:344", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -36.0, + "y": 281.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:345", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -36.0, + "y": 283.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:346", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -45.0, + "y": 276.0, + "width": 15.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:347", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -44.0, + "y": 277.0, + "width": 6.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:348", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -37.0, + "y": 277.0, + "width": 6.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -45.0, + "y": 276.0, + "width": 15.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -46.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:349", + "name": "tag", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:350", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:351", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 53.0, + "y": 275.0, + "width": 13.082500457763672, + "height": 13.092499732971191 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:352", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 53.909999847412109, + "y": 275.91000366210938, + "width": 11.329999923706055, + "height": 11.329999923706055 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:353", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 55.0, + "y": 277.0, + "width": 2.0099999904632568, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 53.0, + "y": 275.0, + "width": 13.082500457763672, + "height": 13.092499732971191 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 52.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:354", + "name": "telescope", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:355", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:356", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 89.0, + "y": 283.0, + "width": 7.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:357", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 91.0, + "y": 274.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:358", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 89.0, + "y": 277.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:359", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 86.0, + "y": 275.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:360", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 85.409240722656250, + "y": 282.13000488281250, + "width": 2.6407620906829834, + "height": 2.7087807655334473 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:361", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 87.720001220703125, + "y": 277.60998535156250, + "width": 7.5599999427795410, + "height": 6.0900001525878906 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:362", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 94.350006103515625, + "y": 276.11718750, + "width": 3.4553976058959961, + "height": 4.1128025054931641 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 85.409240722656250, + "y": 274.0, + "width": 12.396160125732422, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 85.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:363", + "name": "tools", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:364", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:365", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -321.99993896484375, + "y": 238.39201354980469, + "width": 7.1299533843994141, + "height": 8.2079925537109375 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:366", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -313.40997314453125, + "y": 247.21000671386719, + "width": 6.5925002098083496, + "height": 6.7699999809265137 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:367", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -321.479980468750, + "y": 238.0, + "width": 15.479999542236328, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -321.99993896484375, + "y": 238.0, + "width": 15.999953269958496, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 238.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:368", + "name": "trashcan", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:369", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:370", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -247.0, + "y": 239.0, + "width": 11.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:371", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -245.0, + "y": 243.0, + "width": 7.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:372", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": 241.0, + "width": 9.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -247.0, + "y": 239.0, + "width": 11.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -248.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:373", + "name": "unmute", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:374", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:375", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -54.840000152587891, + "y": 243.19000244140625, + "width": 1.8400000333786011, + "height": 5.6599998474121094 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:376", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -64.0, + "y": 240.05946350097656, + "width": 8.0, + "height": 11.881086349487305 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:377", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -52.010002136230469, + "y": 240.34001159667969, + "width": 3.0099999904632568, + "height": 11.319999694824219 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:378", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -53.439998626708984, + "y": 241.77000427246094, + "width": 2.4400000572204590, + "height": 8.4799995422363281 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -64.0, + "y": 240.05946350097656, + "width": 15.0, + "height": 11.881086349487305 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -65.0, + "y": 238.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:379", + "name": "watch", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:380", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:381", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 58.0, + "y": 243.0, + "width": 3.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:382", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 53.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:383", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 54.0, + "y": 241.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 53.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 53.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:384", + "name": "key", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:385", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:386", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 121.0, + "y": 239.0, + "width": 14.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:387", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 130.61999511718750, + "y": 240.61999511718750, + "width": 2.7599999904632568, + "height": 2.7599999904632568 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 121.0, + "y": 239.0, + "width": 14.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 121.0, + "y": 238.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:388", + "name": "archive", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:389", + "name": "Union", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:390", + "name": "Rectangle", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 230.0, + "y": 239.0, + "width": 14.0, + "height": 4.0000004768371582 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [], + "cornerRadius": 1.0, + "rectangleCornerRadii": [ + 1.0, + 1.0, + 1.0, + 1.0 + ] + }, + { + "id": "254:391", + "name": "Rectangle", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 231.0, + "y": 242.00001525878906, + "width": 12.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [], + "cornerRadius": 1.0, + "rectangleCornerRadii": [ + 0.0, + 0.0, + 1.0, + 1.0 + ] + }, + { + "id": "254:392", + "name": "Line", + "type": "LINE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 234.0, + "y": 246.0, + "width": 6.0, + "height": 0.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 230.0, + "y": 239.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 230.0, + "y": 238.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:393", + "name": "light-bulb", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:394", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:395", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 196.0, + "y": 238.0, + "width": 11.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:396", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 197.0, + "y": 239.0, + "width": 9.0, + "height": 10.989999771118164 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:397", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 199.0, + "y": 252.0, + "width": 5.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 196.0, + "y": 238.0, + "width": 11.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 195.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:398", + "name": "link", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:399", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:400", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -177.0, + "y": 241.0, + "width": 10.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:401", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -172.0, + "y": 244.0, + "width": 10.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -177.0, + "y": 241.0, + "width": 15.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -178.0, + "y": 238.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:402", + "name": "location", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:403", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:404", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -283.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:405", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -282.0, + "y": 239.0, + "width": 10.0, + "height": 13.550000190734863 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:406", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -279.0, + "y": 241.50, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -283.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -283.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:407", + "name": "lock", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:408", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:409", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -210.0, + "y": 250.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:410", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -213.0, + "y": 238.0, + "width": 12.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:411", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -209.19999694824219, + "y": 239.80000305175781, + "width": 4.4099998474121094, + "height": 4.1999998092651367 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:412", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -211.0, + "y": 245.0, + "width": 9.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:413", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -210.0, + "y": 246.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:414", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -210.0, + "y": 248.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -213.0, + "y": 238.0, + "width": 12.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -213.0, + "y": 238.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:415", + "name": "mail-read", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:416", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:417", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -135.0, + "y": 242.0, + "width": 2.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:418", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -135.0, + "y": 244.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:419", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -139.0, + "y": 238.0, + "width": 14.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:420", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -136.0, + "y": 241.0, + "width": 8.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:421", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -138.0, + "y": 245.50, + "width": 4.50, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:422", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -137.0, + "y": 249.0, + "width": 10.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:423", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -130.50, + "y": 245.50, + "width": 4.50, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -139.0, + "y": 238.0, + "width": 14.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -139.0, + "y": 238.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:424", + "name": "mail", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:425", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:426", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -102.0, + "y": 241.0, + "width": 14.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:427", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -101.0, + "y": 242.0, + "width": 12.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:428", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -101.0, + "y": 243.50, + "width": 4.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:429", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -100.0, + "y": 247.0, + "width": 10.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:430", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -93.0, + "y": 243.50, + "width": 4.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -102.0, + "y": 241.0, + "width": 14.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -102.0, + "y": 238.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:431", + "name": "megaphone", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:432", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:433", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 14.0, + "y": 239.0, + "width": 11.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:434", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 22.0, + "y": 240.0, + "width": 2.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:435", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 26.0, + "y": 245.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:436", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 26.0, + "y": 247.0, + "width": 4.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:437", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 26.0, + "y": 241.0, + "width": 4.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 14.0, + "y": 239.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 14.0, + "y": 238.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:438", + "name": "bookmark", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:439", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:440", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 88.0, + "y": 238.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:441", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 89.671623229980469, + "y": 239.83000183105469, + "width": 6.6509747505187988, + "height": 6.1637258529663086 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 88.0, + "y": 238.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 88.0, + "y": 238.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:442", + "name": "calendar", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:443", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:444", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 159.0, + "y": 240.0, + "width": 13.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:445", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 160.0, + "y": 243.0, + "width": 11.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:446", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 162.0, + "y": 239.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:447", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 168.0, + "y": 239.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:448", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 163.0, + "y": 244.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:449", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 165.0, + "y": 244.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:450", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 167.0, + "y": 244.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:451", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 169.0, + "y": 244.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:452", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 161.0, + "y": 246.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:453", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 163.0, + "y": 246.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:454", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 165.0, + "y": 246.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:455", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 167.0, + "y": 246.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:456", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 169.0, + "y": 246.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:457", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 161.0, + "y": 248.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:458", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 163.0, + "y": 248.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:459", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 165.0, + "y": 248.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:460", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 167.0, + "y": 248.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:461", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 169.0, + "y": 248.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:462", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 161.0, + "y": 250.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:463", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 163.0, + "y": 250.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:464", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 165.0, + "y": 250.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:465", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 167.0, + "y": 250.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 159.0, + "y": 239.0, + "width": 13.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 158.0, + "y": 238.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:466", + "name": "clippy", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:467", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:468", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 269.0, + "y": 251.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:469", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 269.0, + "y": 245.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:470", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 273.0, + "y": 246.0, + "width": 8.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:471", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 269.0, + "y": 247.0, + "width": 2.50, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:472", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 269.0, + "y": 249.0, + "width": 2.50, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:473", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 267.0, + "y": 239.0, + "width": 12.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:474", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 269.0, + "y": 240.0, + "width": 8.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 267.0, + "y": 239.0, + "width": 14.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 267.0, + "y": 238.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:475", + "name": "clock", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:476", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:477", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 310.0, + "y": 242.0, + "width": 5.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:478", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 305.29998779296875, + "y": 240.30000305175781, + "width": 11.399999618530273, + "height": 11.399999618530273 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:479", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 304.0, + "y": 239.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 304.0, + "y": 239.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 304.0, + "y": 238.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:480", + "name": "desktop-download", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:481", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:482", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -22.0, + "y": 238.0, + "width": 8.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:483", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -26.0, + "y": 240.0, + "width": 16.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -26.0, + "y": 238.0, + "width": 16.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -26.0, + "y": 238.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:484", + "name": "globe", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:485", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:486", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -247.0, + "y": 203.0, + "width": 13.979999542236328, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:487", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -240.00488281250, + "y": 209.05619812011719, + "width": 1.8023172616958618, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:488", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -240.67572021484375, + "y": 203.28598022460938, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:489", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -240.56265258789062, + "y": 203.87103271484375, + "width": 1.3089805841445923, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:490", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -239.97366333007812, + "y": 203.21652221679688, + "width": 2.0598421096801758, + "height": 1.3342635631561279 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -247.0, + "y": 203.0, + "width": 13.979999542236328, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -247.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:491", + "name": "home", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:492", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:493", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -24.0, + "y": 203.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:494", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -21.190000534057617, + "y": 204.50, + "width": 10.380000114440918, + "height": 11.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -24.0, + "y": 203.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -24.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:495", + "name": "inbox", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:496", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:497", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 49.0, + "y": 203.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:498", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 50.0, + "y": 203.99000549316406, + "width": 12.0, + "height": 9.0100002288818359 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 49.0, + "y": 203.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 49.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:499", + "name": "law", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:500", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:501", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 309.50, + "y": 203.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:502", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 304.0, + "y": 206.0, + "width": 14.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:503", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 305.0, + "y": 209.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:504", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 314.0, + "y": 209.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 304.0, + "y": 203.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 304.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:505", + "name": "milestone", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:506", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:507", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -205.0, + "y": 202.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:508", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -210.0, + "y": 205.0, + "width": 13.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:509", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -205.0, + "y": 206.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:510", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -205.0, + "y": 210.0, + "width": 2.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -210.0, + "y": 202.0, + "width": 13.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -211.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:511", + "name": "mortar-board", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:512", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:513", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -95.999992370605469, + "y": 210.0, + "width": 8.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:514", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -99.977493286132812, + "y": 204.78500366210938, + "width": 15.954999923706055, + "height": 10.237500190734863 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:515", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -92.979995727539062, + "y": 207.0, + "width": 2.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -99.977493286132812, + "y": 204.78500366210938, + "width": 15.954999923706055, + "height": 10.237500190734863 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -100.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:516", + "name": "package", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:517", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:518", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 86.0, + "y": 203.53750610351562, + "width": 15.0, + "height": 12.939999580383301 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:519", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 87.0, + "y": 207.0, + "width": 6.0, + "height": 8.3599996566772461 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:520", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 87.0, + "y": 205.33000183105469, + "width": 9.0, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:521", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 94.0, + "y": 207.0, + "width": 6.0, + "height": 8.3599996566772461 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:522", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 91.50, + "y": 204.27000427246094, + "width": 8.50, + "height": 2.2599999904632568 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 86.0, + "y": 203.53750610351562, + "width": 15.0, + "height": 12.939999580383301 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 85.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:523", + "name": "pencil", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:524", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:525", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 195.0, + "y": 206.0, + "width": 11.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:526", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 196.0, + "y": 214.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:527", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 204.0, + "y": 203.40750122070312, + "width": 4.5925002098083496, + "height": 4.5925002098083496 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 195.0, + "y": 203.40750122070312, + "width": 13.592499732971191, + "height": 13.592499732971191 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 195.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:528", + "name": "pin", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:529", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 232.0, + "y": 202.70582580566406, + "width": 14.296329498291016, + "height": 14.294176101684570 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 231.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:530", + "name": "plug", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:531", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 268.0, + "y": 205.0, + "width": 14.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 268.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:532", + "name": "rocket", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:533", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:534", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -284.0, + "y": 203.92999267578125, + "width": 14.060000419616699, + "height": 14.069999694824219 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:535", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -271.72000122070312, + "y": 202.0, + "width": 3.7200000286102295, + "height": 3.7200000286102295 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -284.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -284.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:536", + "name": "search", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:537", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:538", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -136.0, + "y": 202.0, + "width": 14.992500305175781, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:539", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -134.69999694824219, + "y": 203.30000305175781, + "width": 9.3999996185302734, + "height": 9.3999996185302734 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -136.0, + "y": 202.0, + "width": 14.992500305175781, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -137.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:540", + "name": "note", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:541", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:542", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 162.0, + "y": 211.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:543", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 162.0, + "y": 209.0, + "width": 6.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:544", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 162.0, + "y": 207.0, + "width": 8.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:545", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 160.0, + "y": 205.0, + "width": 12.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:546", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 159.0, + "y": 204.0, + "width": 14.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 159.0, + "y": 204.0, + "width": 14.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 159.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:547", + "name": "shield-lock", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:548", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:549", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 13.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:550", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 18.0, + "y": 206.0, + "width": 4.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 13.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 13.0, + "y": 202.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:551", + "name": "dashboard", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:552", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:553", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -314.0, + "y": 206.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:554", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -310.0, + "y": 210.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:555", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -317.0, + "y": 207.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:556", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -318.0, + "y": 210.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:557", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -315.0, + "y": 204.0, + "width": 9.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:558", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -321.0, + "y": 203.0, + "width": 15.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -321.0, + "y": 203.0, + "width": 15.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:559", + "name": "graph", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:560", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:561", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -175.0, + "y": 202.0, + "width": 16.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:562", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -172.0, + "y": 210.0, + "width": 2.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:563", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -168.0, + "y": 205.0, + "width": 2.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:564", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -164.0, + "y": 208.0, + "width": 2.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -175.0, + "y": 202.0, + "width": 16.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -175.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:565", + "name": "settings", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:566", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:567", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -59.0, + "y": 204.0, + "width": 1.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:568", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -59.0, + "y": 213.0, + "width": 1.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:569", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -54.0, + "y": 210.0, + "width": 1.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:570", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -49.0, + "y": 214.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:571", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -49.0, + "y": 204.0, + "width": 1.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:572", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -54.0, + "y": 204.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:573", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -61.0, + "y": 210.0, + "width": 5.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:574", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -56.0, + "y": 207.0, + "width": 5.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:575", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -51.0, + "y": 211.0, + "width": 5.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -61.0, + "y": 204.0, + "width": 15.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -62.0, + "y": 202.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:576", + "name": "project", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:577", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:578", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 132.0, + "y": 204.0, + "width": 3.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:579", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 128.0, + "y": 204.0, + "width": 3.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:580", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 124.0, + "y": 204.0, + "width": 3.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:581", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 123.0, + "y": 203.0, + "width": 13.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:582", + "name": "Shape-path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 122.0, + "y": 202.0, + "width": 15.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 122.0, + "y": 202.0, + "width": 15.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 122.0, + "y": 202.0, + "width": 15.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:583", + "name": "play", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:584", + "name": "Subtract", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "SUBTRACT", + "children": [ + { + "id": "254:585", + "name": "Circle", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 122.0, + "y": 275.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.14117647707462311, + "g": 0.16078431904315948, + "b": 0.18039216101169586, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:586", + "name": "Polygon", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 127.0, + "y": 278.0, + "width": 6.0, + "height": 8.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.14117647707462311, + "g": 0.16078431904315948, + "b": 0.18039216101169586, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [], + "cornerRadius": 0.50 + } + ], + "absoluteBoundingBox": { + "x": 122.0, + "y": 275.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.14117647707462311, + "g": 0.16078431904315948, + "b": 0.18039216101169586, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 122.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:587", + "name": "github-action", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:588", + "name": "Union", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:589", + "name": "Ellipse", + "type": "ELLIPSE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 169.0, + "y": 278.0, + "width": 3.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "254:1" + }, + "effects": [] + }, + { + "id": "254:590", + "name": "shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 158.0, + "y": 275.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 158.0, + "y": 275.0, + "width": 16.0, + "height": 14.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 158.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:591", + "name": "shield-check", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:592", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 229.0, + "y": 274.0, + "width": 16.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 229.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:593", + "name": "shield-x", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:594", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 266.0, + "y": 274.0, + "width": 15.710000038146973, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 266.0, + "y": 274.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:595", + "name": "shield", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:596", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 194.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.14117647707462311, + "g": 0.16078431904315948, + "b": 0.18039216101169586, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 194.0, + "y": 274.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:597", + "name": "saved", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:598", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:599", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -319.0, + "y": 315.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -319.0, + "y": 315.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 315.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "effects": [] + }, + { + "id": "254:600", + "name": "unsaved", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:601", + "name": "Union", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:602", + "name": "Union", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -288.250, + "y": 315.0, + "width": 14.606406211853027, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -288.250, + "y": 315.0, + "width": 14.606406211853027, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -289.0, + "y": 315.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 202.0, + "width": 640.0, + "height": 88.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 142.0, + "width": 640.0, + "height": 148.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "effects": [] + }, + { + "id": "254:603", + "name": "Developer", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:604", + "name": "Subhead", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:605", + "name": "Developer", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -85.0, + "width": 640.0, + "height": 36.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "254:1", + "text": "254:2" + }, + "effects": [], + "characters": "Developer", + "style": { + "fontFamily": "SF Pro Text", + "fontPostScriptName": "SFProText-Regular", + "fontWeight": 400, + "textAutoResize": "HEIGHT", + "fontSize": 24.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "CENTER", + "letterSpacing": 0.0, + "lineHeightPx": 36.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 0, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "254:606", + "name": "Line", + "type": "LINE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -41.0, + "width": 640.0, + "height": 0.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.88235294818878174, + "g": 0.89411765336990356, + "b": 0.90980392694473267, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "stroke": "254:3" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -85.0, + "width": 640.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "254:607", + "name": "Developer", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:608", + "name": "code", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:609", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:610", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -314.0, + "y": -23.0, + "width": 6.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:611", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -23.0, + "width": 6.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -23.0, + "width": 14.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 2.0 + } + } + ], + "effects": [] + }, + { + "id": "254:612", + "name": "git-branch", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:613", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:614", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 50.0, + "y": -25.0, + "width": 10.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:615", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 50.799999237060547, + "y": -24.200000762939453, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:616", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 50.799999237060547, + "y": -14.189999580383301, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:617", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 56.799999237060547, + "y": -22.190000534057617, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 50.0, + "y": -25.0, + "width": 10.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 50.0, + "y": -26.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:618", + "name": "diff-added", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:619", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:620", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -284.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:621", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -283.0, + "y": -24.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:622", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.0, + "y": -22.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -284.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -284.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:623", + "name": "diff-ignored", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:624", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:625", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -247.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:626", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": -24.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:627", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -244.0, + "y": -22.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -247.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -247.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:628", + "name": "diff-modified", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:629", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:630", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -174.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:631", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -173.0, + "y": -24.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:632", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -170.0, + "y": -21.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -174.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -174.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:633", + "name": "diff-removed", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:634", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:635", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -136.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:636", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -135.0, + "y": -24.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:637", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -133.0, + "y": -19.0, + "width": 8.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -136.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -136.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:638", + "name": "diff-renamed", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:639", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:640", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -58.0, + "y": -22.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:641", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -61.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:642", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -60.0, + "y": -24.0, + "width": 12.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -61.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -61.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:643", + "name": "diff", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:644", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:645", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 17.0, + "y": -21.0, + "width": 5.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:646", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 17.0, + "y": -14.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:647", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 14.0, + "y": -24.0, + "width": 11.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:648", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 15.0, + "y": -23.0, + "width": 9.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:649", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 16.486326217651367, + "y": -26.0, + "width": 10.513673782348633, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 14.0, + "y": -26.0, + "width": 13.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 14.0, + "y": -26.0, + "width": 13.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:650", + "name": "circuit-board", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:651", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:652", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 308.0, + "y": -22.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:653", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 314.0, + "y": -22.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:654", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 314.0, + "y": -16.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:655", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 305.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 305.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 305.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:656", + "name": "gist", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:657", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:658", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -202.250, + "y": -21.0, + "width": 3.250, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:659", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -207.0, + "y": -21.0, + "width": 3.250, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:660", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -209.0, + "y": -25.0, + "width": 12.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:661", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -208.0, + "y": -24.0, + "width": 10.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -209.0, + "y": -25.0, + "width": 12.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -209.0, + "y": -26.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:662", + "name": "git-commit", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:663", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:664", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -99.0, + "y": -22.0, + "width": 14.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:665", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -94.199996948242188, + "y": -20.200000762939453, + "width": 4.4000000953674316, + "height": 4.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -99.0, + "y": -22.0, + "width": 14.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -99.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:666", + "name": "git-compare", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:667", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:668", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -24.0, + "y": -25.0, + "width": 8.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:669", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -23.200000762939453, + "y": -24.200000762939453, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:670", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -18.0, + "y": -26.0, + "width": 8.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:671", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -13.199999809265137, + "y": -14.199999809265137, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -24.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -24.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:672", + "name": "git-merge", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:673", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:674", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 84.0, + "y": -25.010000228881836, + "width": 12.0, + "height": 14.010000228881836 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:675", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 84.800003051757812, + "y": -14.199999809265137, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:676", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 84.800003051757812, + "y": -24.200000762939453, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:677", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 92.800003051757812, + "y": -18.200000762939453, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 84.0, + "y": -25.010000228881836, + "width": 12.0, + "height": 14.010000228881836 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 84.0, + "y": -26.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:678", + "name": "git-pull-request", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:679", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:680", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 159.0, + "y": -26.0, + "width": 8.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:681", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 163.80000305175781, + "y": -14.199999809265137, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:682", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 155.0, + "y": -25.0, + "width": 4.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:683", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 155.80000305175781, + "y": -14.199999809265137, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:684", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 155.80000305175781, + "y": -24.200000762939453, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 155.0, + "y": -26.0, + "width": 12.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 155.0, + "y": -26.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:685", + "name": "issue-closed", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:686", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:687", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 197.0, + "y": -16.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:688", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 197.0, + "y": -22.0, + "width": 2.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:689", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 199.50, + "y": -22.50, + "width": 6.50, + "height": 5.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:690", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 191.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 191.0, + "y": -25.0, + "width": 15.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 190.0, + "y": -26.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:691", + "name": "issue-opened", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:692", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:693", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 231.30000305175781, + "y": -23.700000762939453, + "width": 11.399999618530273, + "height": 11.399999618530273 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:694", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 230.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:695", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 236.0, + "y": -22.0, + "width": 2.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:696", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 236.0, + "y": -16.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 230.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 230.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:697", + "name": "issue-reopened", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:698", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:699", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 273.0, + "y": -22.0, + "width": 2.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:700", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 273.0, + "y": -16.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:701", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 267.0, + "y": -19.0, + "width": 14.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:702", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 267.0, + "y": -25.0, + "width": 14.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 267.0, + "y": -25.0, + "width": 14.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 267.0, + "y": -26.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:703", + "name": "database", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:704", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:705", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 119.0, + "y": -15.50, + "width": 12.0, + "height": 4.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:706", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 119.0, + "y": -19.50, + "width": 12.0, + "height": 4.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:707", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 119.0, + "y": -25.0, + "width": 12.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:708", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 121.0, + "y": -24.0, + "width": 8.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 119.0, + "y": -25.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 119.0, + "y": -26.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:709", + "name": "no-newline", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:710", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:711", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -313.0, + "y": 15.0, + "width": 7.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:712", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 14.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:713", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -321.0, + "y": 15.0, + "width": 4.6599998474121094, + "height": 4.6599998474121094 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:714", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -319.66000366210938, + "y": 16.340000152587891, + "width": 4.6599998474121094, + "height": 4.6599998474121094 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 14.0, + "width": 16.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 10.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:715", + "name": "broadcast", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:716", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:717", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -280.0, + "y": 15.0, + "width": 5.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:718", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -278.0, + "y": 16.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:719", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -279.0, + "y": 19.0, + "width": 3.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:720", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -282.0, + "y": 11.989999771118164, + "width": 9.0, + "height": 7.3000001907348633 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:721", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -285.0, + "y": 9.0, + "width": 15.0, + "height": 14.130000114440918 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -285.0, + "y": 9.0, + "width": 15.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -285.0, + "y": 9.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:722", + "name": "keyboard", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:723", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:724", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -239.0, + "y": 13.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:725", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": 15.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:726", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -241.0, + "y": 13.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:727", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": 13.0, + "width": 2.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:728", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -236.0, + "y": 19.0, + "width": 2.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:729", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -240.0, + "y": 15.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:730", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": 19.0, + "width": 2.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:731", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -237.0, + "y": 13.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:732", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -235.0, + "y": 13.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:733", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -236.0, + "y": 15.0, + "width": 2.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:734", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -248.0, + "y": 11.0, + "width": 16.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:735", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -247.0, + "y": 12.0, + "width": 14.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:736", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -242.0, + "y": 15.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:737", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -243.0, + "y": 13.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:738", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -244.0, + "y": 15.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:739", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -243.0, + "y": 19.0, + "width": 6.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:740", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -238.0, + "y": 15.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:741", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.0, + "y": 17.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:742", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -240.0, + "y": 17.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:743", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -242.0, + "y": 17.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:744", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -244.0, + "y": 17.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:745", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -238.0, + "y": 17.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -248.0, + "y": 11.0, + "width": 16.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -248.0, + "y": 9.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:746", + "name": "file-binary", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:747", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:748", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -170.0, + "y": 18.0, + "width": 3.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:749", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -172.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:750", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -171.0, + "y": 11.0, + "width": 10.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:751", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -166.0, + "y": 13.0, + "width": 3.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:752", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -170.0, + "y": 13.0, + "width": 3.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:753", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -169.0, + "y": 14.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:754", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -166.0, + "y": 18.0, + "width": 3.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:755", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -165.0, + "y": 19.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -172.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -172.0, + "y": 9.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:756", + "name": "file-code", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:757", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:758", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -134.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:759", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -133.0, + "y": 11.0, + "width": 10.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:760", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -132.0, + "y": 15.0, + "width": 3.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:761", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -127.0, + "y": 15.0, + "width": 3.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -134.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -134.0, + "y": 9.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:762", + "name": "file-directory", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:763", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:764", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -98.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:765", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -97.0, + "y": 12.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -98.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -98.0, + "y": 9.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:766", + "name": "file-media", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:767", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:768", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -53.0, + "y": 14.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:769", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -59.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:770", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -58.0, + "y": 11.0, + "width": 10.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -59.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -59.0, + "y": 9.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:771", + "name": "file-pdf", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:772", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:773", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -22.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:774", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -21.0, + "y": 11.0, + "width": 4.0, + "height": 9.3800001144409180 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:775", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -18.297210693359375, + "y": 15.789999961853027, + "width": 3.8272109031677246, + "height": 3.5999388694763184 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:776", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -20.670000076293945, + "y": 19.200000762939453, + "width": 9.6700000762939453, + "height": 3.8048980236053467 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:777", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -16.520000457763672, + "y": 10.999045372009277, + "width": 5.5199999809265137, + "height": 7.1409549713134766 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -22.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -22.0, + "y": 9.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:778", + "name": "file-submodule", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:779", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:780", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 18.0, + "y": 16.0, + "width": 10.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:781", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 19.0, + "y": 17.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:782", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 14.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:783", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 15.0, + "y": 12.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 14.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 14.0, + "y": 9.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:784", + "name": "file-symlink-directory", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:785", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:786", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 49.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:787", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 50.0, + "y": 12.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:788", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 52.0, + "y": 15.0, + "width": 8.0100002288818359, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 49.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 49.0, + "y": 9.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:789", + "name": "file-symlink-file", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:790", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:791", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 84.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:792", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 85.0, + "y": 11.0, + "width": 10.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:793", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 86.0, + "y": 13.50, + "width": 8.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 84.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 84.0, + "y": 9.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:794", + "name": "file-zip", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:795", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:796", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -209.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:797", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -208.0, + "y": 11.0, + "width": 10.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:798", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -204.0, + "y": 12.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:799", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -205.0, + "y": 13.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:800", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -204.0, + "y": 14.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:801", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -205.0, + "y": 15.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:802", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -204.0, + "y": 16.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:803", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -206.0, + "y": 17.0, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:804", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -205.0, + "y": 19.0, + "width": 2.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -209.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -209.0, + "y": 9.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:805", + "name": "browser", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:806", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:807", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 123.0, + "y": 12.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:808", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 121.0, + "y": 12.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:809", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 119.0, + "y": 12.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:810", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 119.0, + "y": 14.0, + "width": 12.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:811", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 125.0, + "y": 12.0, + "width": 6.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:812", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 118.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 118.0, + "y": 11.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 118.0, + "y": 9.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:813", + "name": "file", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:814", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:815", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 157.0, + "y": 13.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:816", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 157.0, + "y": 16.0, + "width": 7.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:817", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 157.0, + "y": 18.0, + "width": 7.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:818", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 157.0, + "y": 20.0, + "width": 7.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:819", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 155.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:820", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 156.0, + "y": 11.0, + "width": 10.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 155.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 155.0, + "y": 9.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:821", + "name": "repo-clone", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:822", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:823", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 200.0, + "y": 10.0, + "width": 7.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:824", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 201.0, + "y": 16.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:825", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 203.0, + "y": 16.0, + "width": 3.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:826", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 202.0, + "y": 11.0, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:827", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 194.0, + "y": 14.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:828", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 194.0, + "y": 12.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:829", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 191.0, + "y": 10.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:830", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 192.0, + "y": 21.0, + "width": 10.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:831", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 194.0, + "y": 18.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:832", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 194.0, + "y": 16.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 191.0, + "y": 10.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 191.0, + "y": 10.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:833", + "name": "repo-force-push", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:834", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:835", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 236.0, + "y": 12.0, + "width": 6.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:836", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 232.0, + "y": 10.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 232.0, + "y": 10.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 232.0, + "y": 10.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:837", + "name": "repo-forked", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:838", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:839", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 270.0, + "y": 11.0, + "width": 10.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:840", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 270.79998779296875, + "y": 11.800000190734863, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:841", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 273.79998779296875, + "y": 21.799999237060547, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:842", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 276.79998779296875, + "y": 11.800000190734863, + "width": 2.4000000953674316, + "height": 2.4000000953674316 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 270.0, + "y": 11.0, + "width": 10.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 270.0, + "y": 10.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:843", + "name": "repo-pull", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:844", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:845", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 313.0, + "y": 12.0, + "width": 9.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:846", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 309.0, + "y": 12.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:847", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 306.0, + "y": 10.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:848", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 307.0, + "y": 21.0, + "width": 10.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:849", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 309.0, + "y": 16.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:850", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 309.0, + "y": 14.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:851", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 309.0, + "y": 18.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 306.0, + "y": 10.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 306.0, + "y": 10.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:852", + "name": "repo-push", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:853", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:854", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -319.0, + "y": 48.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:855", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -319.0, + "y": 50.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:856", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -318.0, + "y": 51.0, + "width": 6.0, + "height": 11.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:857", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": 46.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 46.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": 46.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:858", + "name": "repo", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:859", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:860", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.0, + "y": 54.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:861", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.0, + "y": 52.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:862", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.0, + "y": 50.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:863", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.0, + "y": 48.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:864", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -284.0, + "y": 46.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:865", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -283.0, + "y": 57.0, + "width": 10.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:866", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -282.0, + "y": 47.0, + "width": 9.0, + "height": 9.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -284.0, + "y": 46.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -284.0, + "y": 46.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:867", + "name": "mirror", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:868", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:869", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -211.0, + "y": 45.0, + "width": 15.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:870", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -210.0, + "y": 46.50, + "width": 13.0, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:871", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -209.0, + "y": 50.0, + "width": 11.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -211.0, + "y": 45.0, + "width": 15.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -212.0, + "y": 45.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:872", + "name": "ruby", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:873", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:874", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -240.0, + "y": 49.0, + "width": 5.0, + "height": 7.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:875", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -248.0, + "y": 47.0, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:876", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -246.50, + "y": 48.0, + "width": 13.0, + "height": 9.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -248.0, + "y": 47.0, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -248.0, + "y": 45.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:877", + "name": "server", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:878", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:879", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -172.0, + "y": 51.0, + "width": 12.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:880", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -171.0, + "y": 52.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:881", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -169.0, + "y": 52.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:882", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -167.0, + "y": 52.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:883", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -165.0, + "y": 52.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:884", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -172.0, + "y": 46.0, + "width": 12.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:885", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -171.0, + "y": 47.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:886", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -169.0, + "y": 47.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:887", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -167.0, + "y": 47.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:888", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -165.0, + "y": 47.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:889", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -162.0, + "y": 47.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:890", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -172.0, + "y": 56.0, + "width": 12.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:891", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -171.0, + "y": 57.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:892", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -169.0, + "y": 57.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:893", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -167.0, + "y": 57.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:894", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -165.0, + "y": 57.0, + "width": 1.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -172.0, + "y": 46.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -172.0, + "y": 45.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:895", + "name": "terminal", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:896", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:897", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -128.0, + "y": 55.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:898", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -131.750, + "y": 50.0, + "width": 3.750, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:899", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -135.0, + "y": 47.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:900", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -134.0, + "y": 48.0, + "width": 12.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -135.0, + "y": 47.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -135.0, + "y": 45.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:901", + "name": "radio-tower", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:902", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:903", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -95.959999084472656, + "y": 46.700000762939453, + "width": 1.93750, + "height": 4.5974998474121094 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:904", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -98.989997863769531, + "y": 45.330001831054688, + "width": 2.5062685012817383, + "height": 7.3350000381469727 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:905", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -92.600097656250, + "y": 47.380001068115234, + "width": 3.2401015758514404, + "height": 3.2400000095367432 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:906", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -85.507499694824219, + "y": 45.335002899169922, + "width": 2.5074999332427979, + "height": 7.3449997901916504 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:907", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -95.329994201660156, + "y": 51.620002746582031, + "width": 8.6800003051757812, + "height": 8.3699998855590820 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:908", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -91.979995727539062, + "y": 52.400001525878906, + "width": 2.0, + "height": 3.5999999046325684 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:909", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -92.979995727539062, + "y": 56.990001678466797, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:910", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -87.977500915527344, + "y": 46.702503204345703, + "width": 1.93750, + "height": 4.5974998474121094 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -98.989997863769531, + "y": 45.330001831054688, + "width": 15.989999771118164, + "height": 14.659999847412109 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -99.0, + "y": 45.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:911", + "name": "rss", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:912", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:913", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -57.0, + "y": 56.0, + "width": 2.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:914", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -57.0, + "y": 48.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:915", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -57.0, + "y": 52.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -57.0, + "y": 48.0, + "width": 10.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -57.0, + "y": 45.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:916", + "name": "versions", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:917", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:918", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -19.0, + "y": 49.0, + "width": 8.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:919", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -17.0, + "y": 51.0, + "width": 4.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:920", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -22.0, + "y": 50.0, + "width": 2.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:921", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -25.0, + "y": 51.0, + "width": 2.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -25.0, + "y": 49.0, + "width": 14.0, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -25.0, + "y": 46.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:922", + "name": "request-changes", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:923", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:924", + "name": "Subtract", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "SUBTRACT", + "children": [ + { + "id": "254:925", + "name": "Union", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 13.0, + "y": 46.0, + "width": 16.0, + "height": 15.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:926", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 14.0, + "y": 47.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 13.0, + "y": 46.0, + "width": 16.0, + "height": 15.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:927", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 18.50, + "y": 48.0, + "width": 5.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + }, + { + "id": "254:928", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 18.50, + "y": 54.0, + "width": 5.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 13.0, + "y": 46.0, + "width": 16.0, + "height": 15.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 13.0, + "y": 46.0, + "width": 16.0, + "height": 15.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:929", + "name": "dependent", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:930", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 48.0, + "y": 46.0, + "width": 15.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 48.0, + "y": 45.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:931", + "name": "repo-template", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:932", + "name": "Union", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:933", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 88.0, + "y": 53.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:934", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 88.0, + "y": 51.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:935", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 88.0, + "y": 49.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:936", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 88.0, + "y": 47.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:937", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 85.0, + "y": 45.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:938", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 93.0, + "y": 55.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 85.0, + "y": 45.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 85.0, + "y": 45.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:939", + "name": "repo-template-private", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:940", + "name": "Union", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:941", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 122.0, + "y": 56.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:942", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 127.0, + "y": 55.0, + "width": 6.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:943", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 119.0, + "y": 45.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:944", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 122.0, + "y": 52.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + }, + { + "id": "254:945", + "name": "Vector", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 122.0, + "y": 54.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 119.0, + "y": 45.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 119.0, + "y": 45.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -26.0, + "width": 644.0, + "height": 88.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -85.0, + "width": 644.0, + "height": 147.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "effects": [] + }, + { + "id": "254:946", + "name": "Nature", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:947", + "name": "Subhead", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:948", + "name": "Nature", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -241.0, + "width": 640.0, + "height": 36.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "254:1", + "text": "254:2" + }, + "effects": [], + "characters": "Nature", + "style": { + "fontFamily": "SF Pro Text", + "fontPostScriptName": "SFProText-Regular", + "fontWeight": 400, + "textAutoResize": "HEIGHT", + "fontSize": 24.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "CENTER", + "letterSpacing": 0.0, + "lineHeightPx": 36.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 0, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "254:949", + "name": "Line", + "type": "LINE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -197.0, + "width": 640.0, + "height": 0.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.88235294818878174, + "g": 0.89411765336990356, + "b": 0.90980392694473267, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "stroke": "254:3" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -241.0, + "width": 640.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "254:950", + "name": "Nature", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:951", + "name": "squirrel", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:952", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:953", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -214.750, + "y": -180.0, + "width": 15.750, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:954", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -213.0, + "y": -176.0, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -214.750, + "y": -180.0, + "width": 15.750, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -215.0, + "y": -181.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:955", + "name": "zap", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:956", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -181.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -181.0, + "width": 10.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:957", + "name": "flame", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:958", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -289.00003051757812, + "y": -180.69999694824219, + "width": 11.990019798278809, + "height": 15.380000114440918 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -289.0, + "y": -181.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:959", + "name": "bug", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:960", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:961", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -253.16999816894531, + "y": -180.0, + "width": 13.340000152587891, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:962", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -248.0, + "y": -177.0, + "width": 3.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -253.16999816894531, + "y": -180.0, + "width": 13.340000152587891, + "height": 13.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -254.0, + "y": -181.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -181.0, + "width": 123.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -241.0, + "width": 640.0, + "height": 76.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "effects": [] + }, + { + "id": "254:963", + "name": "People", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:964", + "name": "Subhead", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:965", + "name": "People", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -398.0, + "width": 640.0, + "height": 36.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "254:1", + "text": "254:2" + }, + "effects": [], + "characters": "People", + "style": { + "fontFamily": "SF Pro Text", + "fontPostScriptName": "SFProText-Regular", + "fontWeight": 400, + "textAutoResize": "HEIGHT", + "fontSize": 24.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "CENTER", + "letterSpacing": 0.0, + "lineHeightPx": 36.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 0, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "254:966", + "name": "Line", + "type": "LINE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -354.0, + "width": 640.0, + "height": 0.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.88235294818878174, + "g": 0.89411765336990356, + "b": 0.90980392694473267, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "stroke": "254:3" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -398.0, + "width": 640.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "254:967", + "name": "People", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:968", + "name": "person", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:969", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -92.0, + "y": -337.0, + "width": 12.0, + "height": 14.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -92.0, + "y": -338.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:970", + "name": "smiley", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:971", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:972", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -283.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:973", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -281.79000854492188, + "y": -336.79000854492188, + "width": 13.579999923706055, + "height": 13.579999923706055 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:974", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -279.0, + "y": -332.98001098632812, + "width": 2.9800000190734863, + "height": 2.9800000190734863 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:975", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -274.0, + "y": -332.98001098632812, + "width": 2.9800000190734863, + "height": 2.9800000190734863 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:976", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -280.03012084960938, + "y": -329.0, + "width": 10.054918289184570, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -283.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -283.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:977", + "name": "hubot", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:978", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:979", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -166.0, + "y": -332.0, + "width": 10.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:980", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -165.0, + "y": -331.0, + "width": 8.0, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:981", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -163.0, + "y": -327.0, + "width": 4.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:982", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -168.0, + "y": -336.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:983", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -167.0, + "y": -335.08999633789062, + "width": 12.0, + "height": 10.090000152587891 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -168.0, + "y": -336.0, + "width": 14.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -168.0, + "y": -338.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:984", + "name": "thumbsdown", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:985", + "name": "Shape 1", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:986", + "name": "thumbsup", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:987", + "name": "Shape 1", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -207.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -207.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:988", + "name": "organization", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:989", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -131.0, + "y": -337.0, + "width": 16.0, + "height": 12.998999595642090 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -131.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:990", + "name": "gist-secret", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:991", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:992", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -239.0, + "y": -329.0, + "width": 4.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:993", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -242.0, + "y": -332.0, + "width": 10.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:994", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -240.0, + "y": -336.0, + "width": 6.0, + "height": 3.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:995", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -235.0, + "y": -329.0, + "width": 4.7822313308715820, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:996", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -243.78222656250, + "y": -329.0, + "width": 4.7822313308715820, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -243.78222656250, + "y": -336.0, + "width": 13.564462661743164, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -244.0, + "y": -338.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:997", + "name": "eye", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:998", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:999", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -57.0, + "y": -336.0, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1000", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -53.0, + "y": -334.0, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1001", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -51.0, + "y": -332.0, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -57.0, + "y": -336.0, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -57.0, + "y": -338.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:1002", + "name": "eye-closed", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1003", + "name": "eye-closed", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "UNION", + "children": [ + { + "id": "254:1004", + "name": "Subtract", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "SUBTRACT", + "children": [ + { + "id": "254:1005", + "name": "closed-eye", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:1006", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -18.0, + "y": -336.0749511718750, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1007", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -14.0, + "y": -334.0749511718750, + "width": 8.0, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1008", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -12.0, + "y": -332.0749511718750, + "width": 4.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -18.0, + "y": -336.0749511718750, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + }, + { + "id": "254:1009", + "name": "Line (Stroke)", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -17.874998092651367, + "y": -337.0749511718750, + "width": 16.289213180541992, + "height": 16.289213180541992 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 2.0, + "strokeAlign": "CENTER", + "strokeCap": "ROUND", + "strokeJoin": "ROUND", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -18.0, + "y": -336.0749511718750, + "width": 16.0, + "height": 12.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + }, + { + "id": "254:1010", + "name": "Line (Stroke)", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -17.159896850585938, + "y": -337.20709228515625, + "width": 14.335678100585938, + "height": 14.335678100585938 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "CENTER", + "strokeCap": "ROUND", + "strokeJoin": "ROUND", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -18.0, + "y": -337.0, + "width": 16.0, + "height": 13.921463966369629 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "strokeCap": "ROUND", + "strokeJoin": "ROUND", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -18.0, + "y": -337.0, + "width": 16.0, + "height": 13.921463966369629 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:1011", + "name": "jersey", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1012", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:1013", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 25.0, + "y": -332.0, + "width": 3.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1014", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 26.0, + "y": -331.0, + "width": 1.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1015", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 22.0, + "y": -338.0, + "width": 13.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1016", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 23.0, + "y": -337.0, + "width": 11.0, + "height": 14.010000228881836 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1017", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 29.0, + "y": -332.0, + "width": 3.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1018", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 30.0, + "y": -331.0, + "width": 1.0, + "height": 4.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 22.0, + "y": -338.0, + "width": 13.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 21.0, + "y": -338.0, + "width": 14.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "PDF", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -338.0, + "width": 357.0, + "height": 17.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -398.0, + "width": 640.0, + "height": 77.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "effects": [] + }, + { + "id": "254:1019", + "name": "Logos", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1020", + "name": "Subhead", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1021", + "name": "Logos", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -554.0, + "width": 640.0, + "height": 36.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "254:1", + "text": "254:2" + }, + "effects": [], + "characters": "Logos", + "style": { + "fontFamily": "SF Pro Text", + "fontPostScriptName": "SFProText-Regular", + "fontWeight": 400, + "textAutoResize": "HEIGHT", + "fontSize": 24.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "CENTER", + "letterSpacing": 0.0, + "lineHeightPx": 36.0, + "lineHeightPercent": 128.0, + "lineHeightPercentFontSize": 150.0, + "lineHeightUnit": "PIXELS" + }, + "layoutVersion": 0, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "254:1022", + "name": "Line", + "type": "LINE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -510.0, + "width": 640.0, + "height": 0.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT_RIGHT" + }, + "fills": [], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.88235294818878174, + "g": 0.89411765336990356, + "b": 0.90980392694473267, + "a": 1.0 + } + } + ], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "stroke": "254:3" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -554.0, + "width": 640.0, + "height": 60.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "254:1023", + "name": "Logos", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1024", + "name": "octoface", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1025", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:1026", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -120.0, + "y": -491.99920654296875, + "width": 16.0, + "height": 12.999209403991699 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1027", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -117.98000335693359, + "y": -485.99783325195312, + "width": 11.960000038146973, + "height": 6.0178375244140625 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1028", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -115.70999908447266, + "y": -484.9899902343750, + "width": 2.4000000953674316, + "height": 3.5699999332427979 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1029", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -110.69000244140625, + "y": -484.9899902343750, + "width": 2.4000000953674316, + "height": 3.5699999332427979 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -120.0, + "y": -491.99920654296875, + "width": 16.0, + "height": 12.999209403991699 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -120.0, + "y": -494.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:1030", + "name": "mark-github", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1031", + "name": "Shape", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -202.0, + "y": -494.0, + "width": 16.0, + "height": 15.605282783508301 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -202.0, + "y": -494.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:1032", + "name": "logo-github", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1033", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:1034", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -253.49000549316406, + "y": -481.96990966796875, + "width": 1.0, + "height": 1.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1035", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -258.82000732421875, + "y": -490.16989135742188, + "width": 5.50, + "height": 10.270000457763672 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1036", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -232.35000610351562, + "y": -486.143066406250, + "width": 2.5799999237060547, + "height": 4.234802246093750 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1037", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -234.80999755859375, + "y": -491.58990478515625, + "width": 7.4699997901916504, + "height": 11.680000305175781 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1038", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -243.08000183105469, + "y": -487.92990112304688, + "width": 7.2100000381469727, + "height": 8.0399999618530273 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1039", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -262.05999755859375, + "y": -487.93991088867188, + "width": 2.4700000286102295, + "height": 7.8099999427795410 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1040", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -262.19000244140625, + "y": -491.31988525390625, + "width": 2.7400000095367432, + "height": 2.7599999904632568 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1041", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -252.38000488281250, + "y": -491.56988525390625, + "width": 8.2299995422363281, + "height": 11.449999809265137 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1042", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -272.0, + "y": -491.99996948242188, + "width": 8.8100004196166992, + "height": 12.110070228576660 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -272.0, + "y": -491.99996948242188, + "width": 44.659999847412109, + "height": 12.110070228576660 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -272.0, + "y": -494.0, + "width": 45.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:1043", + "name": "logo-gist", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1044", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:1045", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -322.0, + "y": -492.0, + "width": 8.2200002670288086, + "height": 12.060000419616699 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1046", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -311.95999145507812, + "y": -487.94000244140625, + "width": 1.7200000286102295, + "height": 8.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1047", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -312.20999145507812, + "y": -491.04998779296875, + "width": 1.5499999523162842, + "height": 1.5599999427795410 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1048", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -309.11999511718750, + "y": -488.05999755859375, + "width": 5.5799999237060547, + "height": 8.1199998855590820 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1049", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -302.79998779296875, + "y": -490.41000366210938, + "width": 5.0599999427795410, + "height": 10.470000267028809 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -492.0, + "width": 24.260000228881836, + "height": 12.060000419616699 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -494.0, + "width": 25.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:1050", + "name": "markdown", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1051", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:1052", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -161.0, + "y": -491.0, + "width": 15.990141868591309, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1053", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -159.0, + "y": -489.0, + "width": 7.0, + "height": 6.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1054", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -151.50, + "y": -489.0, + "width": 5.0, + "height": 6.50 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -161.0, + "y": -491.0, + "width": 15.990141868591309, + "height": 10.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -161.0, + "y": -494.0, + "width": 16.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + }, + { + "id": "254:1055", + "name": "paintcan", + "type": "COMPONENT", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "254:1056", + "name": "Shape", + "type": "BOOLEAN_OPERATION", + "blendMode": "PASS_THROUGH", + "booleanOperation": "EXCLUDE", + "children": [ + { + "id": "254:1057", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -79.0, + "y": -494.0, + "width": 12.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1058", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -77.0, + "y": -486.79998779296875, + "width": 8.0, + "height": 5.8000001907348633 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1059", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -76.709999084472656, + "y": -489.0, + "width": 7.4200000762939453, + "height": 2.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + }, + { + "id": "254:1060", + "name": "Path", + "type": "VECTOR", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -78.0, + "y": -493.0, + "width": 10.0, + "height": 5.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.85490196943283081, + "g": 0.85490196943283081, + "b": 0.85490196943283081, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -79.0, + "y": -494.0, + "width": 12.0, + "height": 15.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10588235408067703, + "g": 0.12156862765550613, + "b": 0.13725490868091583, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 0.0, + "strokeAlign": "CENTER", + "styles": { + "fill": "254:1" + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -79.0, + "y": -494.0, + "width": 12.0, + "height": 16.0 + }, + "constraints": { + "vertical": "SCALE", + "horizontal": "SCALE" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "layoutGrids": [], + "exportSettings": [ + { + "suffix": "", + "format": "SVG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -494.0, + "width": 255.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": -322.0, + "y": -554.0, + "width": 640.0, + "height": 76.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "effects": [] + } + ], + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "prototypeStartNodeID": null, + "prototypeDevice": { + "type": "NONE", + "rotation": "NONE" + } + }, + { + "id": "119:2", + "name": "figma-styles", + "type": "CANVAS", + "children": [ + { + "id": "124:9", + "name": "Frame 1", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "124:11", + "name": "Rectangle 2", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 419.0, + "y": 114.0, + "width": 147.0, + "height": 280.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "layoutAlign": "CENTER", + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 5.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:17" + }, + "effects": [] + }, + { + "id": "124:10", + "name": "Rectangle 1", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 576.0, + "y": 114.0, + "width": 302.0, + "height": 280.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "layoutAlign": "CENTER", + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:18", + "effect": "296:7" + }, + "effects": [ + { + "type": "LAYER_BLUR", + "visible": true, + "radius": 4.0 + } + ] + } + ], + "absoluteBoundingBox": { + "x": 409.0, + "y": 104.0, + "width": 479.0, + "height": 300.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + }, + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokeWeight": 4.0, + "strokeAlign": "OUTSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "styles": { + "strokes": "121:10", + "effect": "124:8" + }, + "layoutMode": "HORIZONTAL", + "itemSpacing": 10.0, + "horizontalPadding": 10.0, + "verticalPadding": 10.0, + "exportSettings": [ + { + "suffix": "", + "format": "PNG", + "constraint": { + "type": "SCALE", + "value": 1.0 + } + } + ], + "effects": [ + { + "type": "DROP_SHADOW", + "visible": true, + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.250 + }, + "blendMode": "NORMAL", + "offset": { + "x": 3.0, + "y": 4.0 + }, + "radius": 7.0 + } + ] + }, + { + "id": "124:16", + "name": "Frame 2", + "type": "FRAME", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "124:17", + "name": "Rectangle 3", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 499.0, + "y": 599.0, + "width": 90.0, + "height": 60.0 + }, + "constraints": { + "vertical": "CENTER", + "horizontal": "CENTER" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.76862746477127075, + "g": 0.76862746477127075, + "b": 0.76862746477127075, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "effects": [] + } + ], + "absoluteBoundingBox": { + "x": 469.0, + "y": 569.0, + "width": 360.0, + "height": 159.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": true, + "background": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 1.0, + "g": 1.0, + "b": 1.0, + "a": 1.0 + }, + "layoutGrids": [ + { + "pattern": "GRID", + "sectionSize": 10.0, + "visible": true, + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 0.10000000149011612 + }, + "alignment": "MIN", + "gutterSize": 0, + "offset": 0, + "count": -1 + } + ], + "styles": { + "grid": "124:18" + }, + "effects": [] + }, + { + "id": "124:19", + "name": "Rectangle 4", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 532.0, + "y": -316.0, + "width": 234.0, + "height": 255.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokeWeight": 7.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:12", + "stroke": "121:17", + "effect": "124:8" + }, + "effects": [ + { + "type": "DROP_SHADOW", + "visible": true, + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.250 + }, + "blendMode": "NORMAL", + "offset": { + "x": 3.0, + "y": 4.0 + }, + "radius": 7.0 + } + ] + }, + { + "id": "124:20", + "name": "Book Title", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": 599.0, + "y": -228.0, + "width": 54.0, + "height": 14.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "effects": [], + "characters": "Book Title", + "style": { + "fontFamily": "Roboto", + "fontPostScriptName": null, + "fontWeight": 400, + "textAutoResize": "WIDTH_AND_HEIGHT", + "fontSize": 12.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 14.06250, + "lineHeightPercent": 100.0, + "lineHeightUnit": "INTRINSIC_%" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "122:11", + "name": "Text Styles", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "122:17", + "name": "regular-text", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 508.0, + "width": 69.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "121:17", + "text": "122:18" + }, + "effects": [], + "characters": "Regular Text", + "style": { + "fontFamily": "Roboto Condensed", + "fontPostScriptName": "RobotoCondensed-Regular", + "fontWeight": 400, + "textAutoResize": "WIDTH_AND_HEIGHT", + "fontSize": 14.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 16.406250, + "lineHeightPercent": 100.0, + "lineHeightUnit": "INTRINSIC_%" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "400:18", + "name": "regular-text", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 539.0, + "width": 67.0, + "height": 16.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "121:18", + "text": "400:33" + }, + "effects": [], + "characters": "Deleted Text", + "style": { + "fontFamily": "Roboto Condensed", + "fontPostScriptName": "RobotoCondensed-Bold", + "fontWeight": 700, + "textCase": "LOWER", + "textAutoResize": "WIDTH_AND_HEIGHT", + "textDecoration": "STRIKETHROUGH", + "fontSize": 14.0, + "textAlignHorizontal": "CENTER", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 16.406250, + "lineHeightPercent": 100.0, + "lineHeightUnit": "INTRINSIC_%" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "122:15", + "name": "H2 sub-title", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 472.0, + "width": 99.0, + "height": 21.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "121:16", + "text": "122:16" + }, + "effects": [], + "characters": "H2 sub-title", + "style": { + "fontFamily": "Roboto", + "fontPostScriptName": null, + "fontWeight": 400, + "textCase": "SMALL_CAPS_FORCED", + "textAutoResize": "WIDTH_AND_HEIGHT", + "fontSize": 18.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 21.093750, + "lineHeightPercent": 100.0, + "lineHeightUnit": "INTRINSIC_%" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "122:13", + "name": "H1 title", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 427.0, + "width": 101.0, + "height": 30.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + }, + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "styles": { + "fill": "121:10", + "text": "122:14" + }, + "effects": [], + "characters": "H1 title", + "style": { + "fontFamily": "Spinnaker", + "fontPostScriptName": "Spinnaker-Regular", + "fontWeight": 400, + "paragraphSpacing": 4.0, + "textCase": "TITLE", + "textAutoResize": "WIDTH_AND_HEIGHT", + "textDecoration": "UNDERLINE", + "fontSize": 24.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 2.0, + "lineHeightPx": 30.0, + "lineHeightPercent": 106.66667175292969, + "lineHeightPercentFontSize": 125.0, + "lineHeightUnit": "PIXELS" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + }, + { + "id": "122:10", + "name": "Text Styles", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 356.0, + "width": 174.0, + "height": 42.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "effects": [], + "characters": "Text Styles", + "style": { + "fontFamily": "Roboto", + "fontPostScriptName": null, + "fontWeight": 400, + "textAutoResize": "WIDTH_AND_HEIGHT", + "fontSize": 36.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 42.18750, + "lineHeightPercent": 100.0, + "lineHeightUnit": "INTRINSIC_%" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + } + ], + "absoluteBoundingBox": { + "x": -428.0, + "y": 356.0, + "width": 174.0, + "height": 199.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "376:10", + "name": "Effect Styles", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "376:8", + "name": "background-blur", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -303.0, + "y": 206.0, + "width": 100.0, + "height": 100.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + }, + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 5.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:10", + "effect": "376:9" + }, + "effects": [ + { + "type": "BACKGROUND_BLUR", + "visible": true, + "radius": 4.0 + } + ] + }, + { + "id": "376:7", + "name": "layer-blur", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 206.0, + "width": 100.0, + "height": 100.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 5.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:16", + "effect": "296:7" + }, + "effects": [ + { + "type": "LAYER_BLUR", + "visible": true, + "radius": 4.0 + } + ] + }, + { + "id": "376:4", + "name": "drop-shadow", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -178.0, + "y": 81.0, + "width": 100.0, + "height": 100.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 5.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:18", + "effect": "124:8" + }, + "effects": [ + { + "type": "DROP_SHADOW", + "visible": true, + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.250 + }, + "blendMode": "NORMAL", + "offset": { + "x": 3.0, + "y": 4.0 + }, + "radius": 7.0 + } + ] + }, + { + "id": "376:0", + "name": "inner-shadow", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 81.0, + "width": 100.0, + "height": 100.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 5.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:17", + "effect": "376:2" + }, + "effects": [ + { + "type": "INNER_SHADOW", + "visible": true, + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 0.50 + }, + "blendMode": "NORMAL", + "offset": { + "x": 4.0, + "y": 5.0 + }, + "radius": 10.0 + } + ] + }, + { + "id": "376:14", + "name": "inner-shadow", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -303.0, + "y": 81.0, + "width": 100.0, + "height": 100.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 5.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:17", + "effect": "376:15" + }, + "effects": [ + { + "type": "INNER_SHADOW", + "visible": true, + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 0.50 + }, + "blendMode": "NORMAL", + "offset": { + "x": -4.0, + "y": -5.0 + }, + "radius": 10.0 + } + ] + }, + { + "id": "376:11", + "name": "inner-shadow", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -178.0, + "y": 206.0, + "width": 100.0, + "height": 100.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 5.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:12", + "effect": "376:13" + }, + "effects": [ + { + "type": "BACKGROUND_BLUR", + "visible": true, + "radius": 4.0 + }, + { + "type": "LAYER_BLUR", + "visible": true, + "radius": 4.0 + }, + { + "type": "DROP_SHADOW", + "visible": true, + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.250 + }, + "blendMode": "NORMAL", + "offset": { + "x": 0.0, + "y": 4.0 + }, + "radius": 4.0 + }, + { + "type": "INNER_SHADOW", + "visible": true, + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.250 + }, + "blendMode": "NORMAL", + "offset": { + "x": 0.0, + "y": 4.0 + }, + "radius": 4.0 + } + ] + }, + { + "id": "376:1", + "name": "Effect Styles", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": 22.0, + "width": 201.0, + "height": 42.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "effects": [], + "characters": "Effect Styles", + "style": { + "fontFamily": "Roboto", + "fontPostScriptName": null, + "fontWeight": 400, + "textAutoResize": "WIDTH_AND_HEIGHT", + "fontSize": 36.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 42.18750, + "lineHeightPercent": 100.0, + "lineHeightUnit": "INTRINSIC_%" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + } + ], + "absoluteBoundingBox": { + "x": -428.0, + "y": 22.0, + "width": 350.0, + "height": 284.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + }, + { + "id": "122:8", + "name": "Color Styles", + "type": "GROUP", + "blendMode": "PASS_THROUGH", + "children": [ + { + "id": "339:6", + "name": "color-image", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -203.0, + "y": -78.0, + "width": 125.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "IMAGE", + "scaleMode": "FILL", + "imageRef": "fa58454b70245545d8e5cafcfb9734a0ece9cfd8" + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "339:7" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "341:1", + "name": "color-linear-gradient-alpha", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -203.0, + "y": -153.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_LINEAR", + "gradientHandlePositions": [ + { + "x": 2.8312212019265814e-09, + "y": 0.35000001664459657 + }, + { + "x": 0.99999998936057011, + "y": 0.60999997178018195 + }, + { + "x": -0.12999997473657152, + "y": 0.85000000990927094 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.72122371196746826, + "g": 0.34901964664459229, + "b": 1.0, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.039215683937072754, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 0.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "341:2" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "339:4", + "name": "color-linear-gradient-complex", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -278.0, + "y": -153.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_LINEAR", + "gradientHandlePositions": [ + { + "x": -1.6653345369377348e-16, + "y": -2.2204460492503131e-16 + }, + { + "x": 0.99999999999999978, + "y": 0.99999999999999978 + }, + { + "x": -0.50000000000000022, + "y": 0.49999999999999978 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.72122371196746826, + "g": 0.34901964664459229, + "b": 1.0, + "a": 1.0 + }, + "position": 0.343750 + }, + { + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + }, + "position": 0.64583331346511841 + }, + { + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "339:5" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "336:0", + "name": "color-diamond-gradient", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -278.0, + "y": -78.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_DIAMOND", + "gradientHandlePositions": [ + { + "x": 0.50, + "y": 0.49999999999999994 + }, + { + "x": 0.50, + "y": 0.99999999999999989 + }, + { + "x": 0.0, + "y": 0.50 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 0.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "339:3" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "336:1", + "name": "color-angular-gradient", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -353.0, + "y": -78.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_ANGULAR", + "gradientHandlePositions": [ + { + "x": 0.50, + "y": 0.49999999999999994 + }, + { + "x": 0.50, + "y": 0.99999999999999989 + }, + { + "x": 0.0, + "y": 0.50 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 0.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "339:2" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "336:2", + "name": "color-radial-gradient", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": -78.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_RADIAL", + "gradientHandlePositions": [ + { + "x": 0.49999999999999978, + "y": 0.49999999999999994 + }, + { + "x": 0.49999999999999967, + "y": 0.99999999999999989 + }, + { + "x": -2.2204460492503131e-16, + "y": 0.49999999999999989 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 0.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "339:1" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "336:3", + "name": "color-linear-gradient", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -353.0, + "y": -153.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "GRADIENT_LINEAR", + "gradientHandlePositions": [ + { + "x": -5.5511151231257827e-16, + "y": 1.0 + }, + { + "x": 0.99999999999999933, + "y": 0.99999999999999922 + }, + { + "x": -4.4408920985006262e-16, + "y": 1.50 + } + ], + "gradientStops": [ + { + "color": { + "r": 0.72122371196746826, + "g": 0.34901964664459229, + "b": 1.0, + "a": 1.0 + }, + "position": 0.0 + }, + { + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + }, + "position": 1.0 + } + ] + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "339:0" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "336:4", + "name": "color-alpha-50", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": -153.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "opacity": 0.50, + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "336:5" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "121:15", + "name": "color-4", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -128.0, + "y": -228.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.039215687662363052, + "g": 0.81176471710205078, + "b": 0.51372551918029785, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:18" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "121:14", + "name": "color-3", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -203.0, + "y": -228.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.10196078568696976, + "g": 0.73725491762161255, + "b": 0.99607843160629272, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:17" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "121:13", + "name": "color-2", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -278.0, + "y": -228.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.63529413938522339, + "g": 0.34901961684226990, + "b": 1.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:16" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "121:11", + "name": "color-1-lighter", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -353.0, + "y": -228.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.44705882668495178, + "b": 0.38431373238563538, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:12" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "121:9", + "name": "color-1", + "type": "RECTANGLE", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": -228.0, + "width": 50.0, + "height": 50.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.94901961088180542, + "g": 0.30588236451148987, + "b": 0.11764705926179886, + "a": 1.0 + } + }, + { + "blendMode": "NORMAL", + "visible": false, + "type": "SOLID", + "color": { + "r": 1.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "styles": { + "fill": "121:10" + }, + "effects": [], + "cornerRadius": 10.0, + "rectangleCornerRadii": [ + 10.0, + 10.0, + 10.0, + 10.0 + ] + }, + { + "id": "122:9", + "name": "Color Styles", + "type": "TEXT", + "blendMode": "PASS_THROUGH", + "absoluteBoundingBox": { + "x": -428.0, + "y": -295.0, + "width": 192.0, + "height": 42.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "fills": [ + { + "blendMode": "NORMAL", + "type": "SOLID", + "color": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 1.0 + } + } + ], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "OUTSIDE", + "effects": [], + "characters": "Color Styles", + "style": { + "fontFamily": "Roboto", + "fontPostScriptName": null, + "fontWeight": 400, + "textAutoResize": "WIDTH_AND_HEIGHT", + "fontSize": 36.0, + "textAlignHorizontal": "LEFT", + "textAlignVertical": "TOP", + "letterSpacing": 0.0, + "lineHeightPx": 42.18750, + "lineHeightPercent": 100.0, + "lineHeightUnit": "INTRINSIC_%" + }, + "characterStyleOverrides": [], + "styleOverrideTable": {} + } + ], + "absoluteBoundingBox": { + "x": -428.0, + "y": -295.0, + "width": 350.0, + "height": 267.0 + }, + "constraints": { + "vertical": "TOP", + "horizontal": "LEFT" + }, + "clipsContent": false, + "background": [], + "fills": [], + "strokes": [], + "strokeWeight": 1.0, + "strokeAlign": "INSIDE", + "backgroundColor": { + "r": 0.0, + "g": 0.0, + "b": 0.0, + "a": 0.0 + }, + "effects": [] + } + ], + "backgroundColor": { + "r": 0.89803922176361084, + "g": 0.89803922176361084, + "b": 0.89803922176361084, + "a": 1.0 + }, + "prototypeStartNodeID": null, + "prototypeDevice": { + "type": "NONE", + "rotation": "NONE" + } + } + ] + }, + "components": { + "56:6": { + "key": "f78df913a582befe5b22a8a9c75411d2bd4f8a13", + "name": "figma-logo", + "description": "" + }, + "101:0": { + "key": "f9a82e43bee67bfba42bf307a7c815ee482dcbd4", + "name": "figma-arrow", + "description": "" + }, + "54:22": { + "key": "59a626c7fd0033984d4ffe003ef3a57a2938502c", + "name": "figma-export", + "description": "" + }, + "58:7": { + "key": "f67d52d115978104d5693cfc5da4152dfcbf8657", + "name": "figma-green", + "description": "" + }, + "58:8": { + "key": "9a5b0fa6bec1544eaffc32a5c503345e9166d560", + "name": "figma-blue", + "description": "" + }, + "58:6": { + "key": "86d5cf3d03501934c5380c9392c4d61ba6540832", + "name": "figma-purple", + "description": "" + }, + "14:8": { + "key": "a7088b1c0be2e48181e162d5a26037a2934ac0e6", + "name": "figma-red", + "description": "" + }, + "138:52": { + "key": "4ec17eb0fde4ef818f525358612ca922c717c68c", + "name": "figma default logo", + "description": "" + }, + "138:76": { + "key": "7f9922f951db88f79a501b8523f660664e1e941f", + "name": "figma/logo", + "description": "" + }, + "138:89": { + "key": "a3babe766e04c16e050a9a44b28e1182b30b8a94", + "name": "figma/logo/main", + "description": "" + }, + "138:102": { + "key": "f33bb71108b01e5ebcbc88a0a6c4a1d1274a1827", + "name": "figma/logo/main (bright)", + "description": "" + }, + "254:9": { + "key": "89696b0b52493acc8692546ac829bd4e334c63a2", + "name": "plus", + "description": "keywords: add, new, more" + }, + "254:11": { + "key": "34827211c9bedb41a55e3eec23647bccf6301aaf", + "name": "primitive-dot", + "description": "keywords: circle" + }, + "254:13": { + "key": "ba1c1c30ebc89856a265890537e3960502210d0c", + "name": "primitive-square", + "description": "keywords: box" + }, + "254:15": { + "key": "963c6f114980e6d67e534419ebecf3b7df91c0b7", + "name": "quote", + "description": "keywords: quotation" + }, + "254:19": { + "key": "31d761e359667a87a05d6bb9adb4dc257f2d8b23", + "name": "three-bars", + "description": "keywords: hamburger, menu, dropdown" + }, + "254:24": { + "key": "ea89735308038576dfa4a90dde76ea8712cdfe44", + "name": "triangle-down", + "description": "keywords: arrow, point, direction" + }, + "254:26": { + "key": "c5b163d70c1f8cb3939969099446d5aef5359cd9", + "name": "triangle-left", + "description": "keywords: arrow, point, direction" + }, + "254:28": { + "key": "6bd060019f34c84dcc9a22a1479624af9b2ae194", + "name": "triangle-right", + "description": "keywords: arrow, point, direction" + }, + "254:30": { + "key": "e0686020965aed26cd9329372b873b60fdac8d7c", + "name": "triangle-up", + "description": "keywords: arrow, point, direction" + }, + "254:32": { + "key": "c7636b8e1ce37a80945b1eb2ff69a1d1f4d4425f", + "name": "kebab-horizontal", + "description": "keywords: kebab, dot, menu, more" + }, + "254:37": { + "key": "1155eaf999f3ead0bf602924476df4c7235b1ec2", + "name": "kebab-vertical", + "description": "keywords: kebab, dot, menu, more" + }, + "254:42": { + "key": "03309b7036885896a4b748266da12b67084b7a7a", + "name": "screen-full", + "description": "keywords: fullscreen, expand" + }, + "254:50": { + "key": "bf94360a0475aaca16d93f21cb7808df7dd79afc", + "name": "screen-normal", + "description": "keywords: fullscreen, expand, exit" + }, + "254:58": { + "key": "73b58e102ae1324a20b1cd4bcfafa4bb0f955f1a", + "name": "x", + "description": "keywords: remove, close, delete" + }, + "254:60": { + "key": "4e709963fea8ca8c5037e4a2feca457971bc2536", + "name": "grabber", + "description": "keywords: mover, drap, drop, sort" + }, + "254:65": { + "key": "67e8ada8c51dd48ca05ffedd3d8beba6a665407f", + "name": "plus-small", + "description": "keywords: add, new, more, small" + }, + "254:69": { + "key": "f01e2dc3c2af682f60d79a48b8c5cd56b7ff34a1", + "name": "pulse", + "description": "keywords: graph, trend, line, activity" + }, + "254:71": { + "key": "688840d4c5a9aa8786914d5783f64be65897924c", + "name": "star", + "description": "keywords: save, remember, like" + }, + "254:73": { + "key": "b68b374d0b14fd6c8f83340774a4176b125ce006", + "name": "stop", + "description": "keywords: block, spam, report" + }, + "254:79": { + "key": "2fdf90256e1558806d4954eb75c60a5f3d0bc87a", + "name": "sync", + "description": "keywords: cycle, refresh, loop" + }, + "254:83": { + "key": "d6c6b8dff9c46bc89028966548d550b135e46f95", + "name": "text-size", + "description": "keywords: font, size, text" + }, + "254:88": { + "key": "f9fa4ee4a30c1eb0f7447c05283a4993f3fafc1d", + "name": "report", + "description": "keywords: report, abuse, flag" + }, + "254:94": { + "key": "2fad473c85c7532359970ee54ac777a5b346907c", + "name": "link-external", + "description": "keywords: out, see, more, go, to" + }, + "254:98": { + "key": "6bd30fd0e286cfeb7ab00e2075227163d6d02546", + "name": "checklist", + "description": "keywords: todo, tasks" + }, + "254:109": { + "key": "0725813b7ce802cc13f6b63d8a0b4e77cead3970", + "name": "cloud-download", + "description": "keywords: save, install, get" + }, + "254:113": { + "key": "502dc02ff129f1f1c3ccca45756f45eea8047566", + "name": "cloud-upload", + "description": "keywords: put, export" + }, + "254:117": { + "key": "b9d256ab632c5356f23219803ebd5c4474a5b719", + "name": "fold-up", + "description": "keywords: unfold, hide, collapse, up" + }, + "254:123": { + "key": "e0c79dfc17b9f92bb5d91b47616cd89678b587e3", + "name": "fold-down", + "description": "keywords: unfold, hide, collapse, down" + }, + "254:129": { + "key": "1e1aab8547a62f1e40c5985631f0d10ef32403bf", + "name": "fold", + "description": "keywords: unfold, hide, collapse" + }, + "254:134": { + "key": "8188d47869a549a0469e2220b1a6635cf578101a", + "name": "tasklist", + "description": "keywords: todo" + }, + "254:140": { + "key": "980987350c19ba6ddfd56f01bb0747c335867fdf", + "name": "history", + "description": "keywords: time, past, revert, back" + }, + "254:144": { + "key": "e92b8f2bf2f4a988c8b17acb8ed0f37cdb865c00", + "name": "dash", + "description": "keywords: hyphen, range" + }, + "254:146": { + "key": "aa2124d46b08fb6849510a13603745268724769f", + "name": "list-ordered", + "description": "keywords: numbers, tasks, todo, items" + }, + "254:154": { + "key": "b5e929760af9d39a98133f826e92c19c779681dd", + "name": "list-unordered", + "description": "keywords: bullet, point, tasks, todo, items" + }, + "254:162": { + "key": "c03e801218d608734c3fbb0fcd3c081b238e0fda", + "name": "reply", + "description": "keywords: reply all, back" + }, + "254:164": { + "key": "2b0dfecfc44deeb46fd7c42d230ad7732696535f", + "name": "mute", + "description": "keywords: quiet, sound, audio, turn, off" + }, + "254:168": { + "key": "d43d488e76e3954c7f5cf4d5fa61580116bd6af0", + "name": "comment-discussion", + "description": "keywords: converse, talk" + }, + "254:173": { + "key": "2a3cf930d1399593e23fcc70014c48faa3495afd", + "name": "comment", + "description": "keywords: speak, bubble" + }, + "254:177": { + "key": "9656230d1132741b2a6408442780ced7cd00b032", + "name": "ellipsis", + "description": "keywords: dot, read, more, hidden, expand" + }, + "254:183": { + "key": "ebc06f9f796f685e1bfb18c34d0569ca616a5204", + "name": "heart", + "description": "keywords: love, beat" + }, + "254:185": { + "key": "9639021a414946f69877f4844a4a1baa78b824c7", + "name": "horizontal-rule", + "description": "keywords: hr" + }, + "254:192": { + "key": "92e5810391c1ee025f97936921f8a8eb0b365e51", + "name": "info", + "description": "keywords: help" + }, + "254:198": { + "key": "a4102402258401a49c4157bee60d8544ddbf88a8", + "name": "italic", + "description": "keywords: font, italic, style" + }, + "254:202": { + "key": "cdc941e1e50bec7648a877669e77f1e66b6c7098", + "name": "unverified", + "description": "keywords: insecure, untrusted, signed" + }, + "254:207": { + "key": "67d36d91b90b521af4be57682feb4e46b9ae3ff3", + "name": "verified", + "description": "keywords: trusted, secure, trustworthy, signed" + }, + "254:211": { + "key": "e08d766208f941dcbc14bc514ea3622ce86dec6a", + "name": "question", + "description": "keywords: help, explain" + }, + "254:217": { + "key": "3a9e2db3c2fa84a1784dd81ab044d2cb4c7634a8", + "name": "unfold", + "description": "keywords: expand, open, reveal" + }, + "254:222": { + "key": "321481907cb7ab13839685b7cf9057de71b09487", + "name": "sign-in", + "description": "keywords: door, arrow, direction, enter, log in" + }, + "254:224": { + "key": "172a102244199a6b461a5c4857eee6abafe8ce79", + "name": "sign-out", + "description": "keywords: door, arrow, direction, leave, log out" + }, + "254:228": { + "key": "5d3cda437890506ed23eaa84bc9710db3804caf0", + "name": "alert", + "description": "keywords: warning, triangle, exclamation, point" + }, + "254:233": { + "key": "dc8c2de8fa81a334fdd4717c9044b780aa1d0597", + "name": "arrow-down", + "description": "keywords: point, direction" + }, + "254:235": { + "key": "9f3cc13b402784517f504302bfab4feb548c3db9", + "name": "arrow-left", + "description": "keywords: point, direction" + }, + "254:237": { + "key": "3457cdce3bd0287d189db54e1d5f5b8736ac3e5d", + "name": "arrow-right", + "description": "keywords: point, direction" + }, + "254:239": { + "key": "1067fc338003f3cea029ad2877dcc80738eee5af", + "name": "arrow-up", + "description": "keywords: point, direction" + }, + "254:241": { + "key": "ff6a05c9bb099d6e1096204dc302f27650ded689", + "name": "arrow-both", + "description": "keywords: point, direction, left, right" + }, + "254:243": { + "key": "fddaf22af31dc165bdd74af8dd84770785940675", + "name": "arrow-small-down", + "description": "keywords: point, direction, little, tiny" + }, + "254:245": { + "key": "7b2c73d0a5a79245d551d19ee058e0f5c5335030", + "name": "arrow-small-left", + "description": "keywords: point, direction, little, tiny" + }, + "254:247": { + "key": "5c4be0f09b023c364ff9beda45f4cf15edd2624f", + "name": "arrow-small-right", + "description": "keywords: point, direction, little, tiny" + }, + "254:249": { + "key": "e2f62bbb14f43c89aeaacb863087285770448f77", + "name": "arrow-small-up", + "description": "keywords: point, direction, little, tiny" + }, + "254:251": { + "key": "185fd8ac6827229155f94bb7c89b86ce1cdc9e9b", + "name": "check", + "description": "keywords: mark, yes, confirm, accept, ok, success" + }, + "254:253": { + "key": "e7ee60e1ecfe197efe46339e09fb9e7dc2ca868d", + "name": "chevron-down", + "description": "keywords: triangle, arrow" + }, + "254:255": { + "key": "6bcd633f50fda620e20b549aac86cc5669222032", + "name": "chevron-left", + "description": "keywords: triangle, arrow" + }, + "254:257": { + "key": "a5c09f09db77276b6be3535b2902861ff595af86", + "name": "chevron-right", + "description": "keywords: triangle, arrow" + }, + "254:259": { + "key": "b84ef58c4f87c4c638afd56801b0e0d9723d5ce1", + "name": "chevron-up", + "description": "keywords: triangle, arrow" + }, + "254:261": { + "key": "4de4f7732bfbc58ff3e20061b1321ea7d8807a6b", + "name": "circle-slash", + "description": "keywords: no, deny, fail, failure, error, bad" + }, + "254:266": { + "key": "ba7c1639a00ebe2c98130eb824c19b12970f5526", + "name": "bold", + "description": "keywords: markdown, bold, text" + }, + "254:271": { + "key": "610ea0075e0b1e055066069352b46b5aa4b7d6d3", + "name": "mention", + "description": "keywords: at, ping" + }, + "254:275": { + "key": "887fd7daefe092f62b6d464210ce4e9d7a7c1a64", + "name": "skip", + "description": "keywords: skip, slash" + }, + "254:277": { + "key": "3e29a4e13c5ea71e73a8d612718031bc78dfae19", + "name": "primitive-dot-stroke", + "description": "keywords: circle, dot, unread" + }, + "254:284": { + "key": "16de7cecdeca2265c447e1eb410809c7e78efe6a", + "name": "beaker", + "description": "keywords: experiment, labs, experimental, feature, test, science, education, study, development, testing" + }, + "254:292": { + "key": "db45d8dd89dfc270c42685a40662558ef346684b", + "name": "bell", + "description": "keywords: notification" + }, + "254:296": { + "key": "78e52975ee507f4d8cc05ce68dc3cbeeba63c08c", + "name": "briefcase", + "description": "keywords: suitcase, business" + }, + "254:301": { + "key": "beba814ec2519e75b7f026eccfb6854cd565abee", + "name": "credit-card", + "description": "keywords: money, billing, payments, transactions" + }, + "254:308": { + "key": "35335ca03cbd2dcdf3694edd480c53927f7a7e64", + "name": "device-camera-video", + "description": "keywords: watch, view, media, stream" + }, + "254:310": { + "key": "61473ed707fc7f4fc7717a1d735399f2d1375f29", + "name": "device-camera", + "description": "keywords: photo, picture, image, snapshot" + }, + "254:316": { + "key": "a6a2daef1a25e5ea9b44cb97e6fb124e6264484b", + "name": "device-desktop", + "description": "keywords: computer, monitor" + }, + "254:320": { + "key": "aaa2b6a56aa7d953e45c4d779a5c9758507f5540", + "name": "device-mobile", + "description": "keywords: phone, iphone, cellphone" + }, + "254:325": { + "key": "650593830ce666146cc428d640a5edb78f418b36", + "name": "gift", + "description": "keywords: package, present, skill, craft, freebie" + }, + "254:334": { + "key": "13d2c4cc861d3d38005da4970ade7be60434eaca", + "name": "gear", + "description": "keywords: settings" + }, + "254:338": { + "key": "c147883f6faebf075ebca2d0c8c3b470c02a68b7", + "name": "book", + "description": "keywords: book, journal, wiki, readme" + }, + "254:349": { + "key": "47611c4ae90d26575a0f7dac9dcd0cf7f5e388ad", + "name": "tag", + "description": "keywords: release" + }, + "254:354": { + "key": "f8e43a46814494b55350a9009478d80e710ca33e", + "name": "telescope", + "description": "keywords: science, space, look, view, explore" + }, + "254:363": { + "key": "1d27a4162f129d64c8e14800d101b8cf1ef05d3d", + "name": "tools", + "description": "keywords: screwdriver, wrench, settings" + }, + "254:368": { + "key": "4a6f4d159871bb1a133ff140c12909b5a48976ee", + "name": "trashcan", + "description": "keywords: garbage, rubbish, recycle, delete" + }, + "254:373": { + "key": "3fe9a8e63bfedff8845bb0f28ef937386107b41e", + "name": "unmute", + "description": "keywords: loud, volume, audio, sound, play" + }, + "254:379": { + "key": "50fe89ac1054599f32daaa0f2dee1c46af774172", + "name": "watch", + "description": "keywords: wait, hourglass, time, date" + }, + "254:384": { + "key": "02bd88f6fc514e546584588871098991e9c99ee5", + "name": "key", + "description": "keywords: key, lock, secure, safe" + }, + "254:388": { + "key": "a4f4651bb70f71c89f91cf2d217747e5bee6a413", + "name": "archive", + "description": "keywords: box, catalog" + }, + "254:393": { + "key": "f5b6b5ac7783e3030e2e315a9b353e83acd055f7", + "name": "light-bulb", + "description": "keywords: idea" + }, + "254:398": { + "key": "a8fb9206c2a7de68feac45f41d85a97a4b1a5641", + "name": "link", + "description": "keywords: connect, hyperlink" + }, + "254:402": { + "key": "02dfbd3da1bcdaa6cfb471703a2b40156b0dec1c", + "name": "location", + "description": "keywords: here, marker" + }, + "254:407": { + "key": "f9e1b1dff27c8b71349c36157a48851184de987e", + "name": "lock", + "description": "keywords: secure, safe, protected" + }, + "254:415": { + "key": "326959f3a070065ed643cb4b46a67eb07d00a141", + "name": "mail-read", + "description": "keywords: email, open" + }, + "254:424": { + "key": "9036b56cb46a05a3b178809be8e731032dbd54b9", + "name": "mail", + "description": "keywords: email, unread" + }, + "254:431": { + "key": "65b40acd47bd60f6ed37470aa364c2810c0972a4", + "name": "megaphone", + "description": "keywords: bullhorn, loud, shout, broadcast" + }, + "254:438": { + "key": "85e4bf23403f9f87f187cd130fb7095554ac5797", + "name": "bookmark", + "description": "keywords: tab, star" + }, + "254:442": { + "key": "d9780856b5b0f306ef1fb5088eabde2a109332ac", + "name": "calendar", + "description": "keywords: time, day, month, year, date, appointment" + }, + "254:466": { + "key": "8f23e808e5678a160482f1d8a3c116625a1b769a", + "name": "clippy", + "description": "keywords: copy, paste, save, capture, clipboard" + }, + "254:475": { + "key": "8dec05a0527727b929e053ce049f9a0bd5f25ea6", + "name": "clock", + "description": "keywords: time, hour, minute, second, watch" + }, + "254:480": { + "key": "8a9d7b4462ca8d2b7eee7ee6d3e7f8d5b82e55fa", + "name": "desktop-download", + "description": "keywords: clone, download" + }, + "254:484": { + "key": "bdb53fbc2a14a8e528291ee6e72368ac7784a053", + "name": "globe", + "description": "keywords: world, earth, planet" + }, + "254:491": { + "key": "6927c4619eb917c3f2d19df7a900f222f970b761", + "name": "home", + "description": "keywords: welcome, index, house, building" + }, + "254:495": { + "key": "954bda1a653c9a53c114e851c61df47520bec50a", + "name": "inbox", + "description": "keywords: mail, todo, new, messages" + }, + "254:499": { + "key": "fcb49eb16bdfdd34aee989eb9a3727b8ac356408", + "name": "law", + "description": "keywords: legal, bill" + }, + "254:505": { + "key": "86f3fa7d378a71427552137956a667f58dd1d88b", + "name": "milestone", + "description": "keywords: marker" + }, + "254:511": { + "key": "79d66ed4e75368ad54cd0211e753c09ee0e8c56b", + "name": "mortar-board", + "description": "keywords: education, learn, teach" + }, + "254:516": { + "key": "b9fd2c2b23b2f1bffd90294e1fe4d9b67c9b04da", + "name": "package", + "description": "keywords: box, ship" + }, + "254:523": { + "key": "c52822219446d18cdfac45452a7322b36a955fc9", + "name": "pencil", + "description": "keywords: edit, change, update, write" + }, + "254:528": { + "key": "5921ccf5e8a3e494b620a6602064ccb5f155e4fd", + "name": "pin", + "description": "keywords: save, star, bookmark" + }, + "254:530": { + "key": "8c22781c37fdef7f939401722ca218b971e003e0", + "name": "plug", + "description": "keywords: hook, webhook" + }, + "254:532": { + "key": "7b21c077c7d50d36bdb5859f05501af75ca1bacc", + "name": "rocket", + "description": "keywords: staff, stafftools, blast, off, space, launch, ship" + }, + "254:536": { + "key": "2fb3a87a2bd97c2d511961a50ce4fdd5db88636e", + "name": "search", + "description": "keywords: magnifying, glass" + }, + "254:540": { + "key": "0773fa59bbd9334ed4089e3dc8b033ee95d33e51", + "name": "note", + "description": "keywords: card, paper, ticket" + }, + "254:547": { + "key": "e448010ffee16734f38b1214c5a03ae22d23f056", + "name": "shield-lock", + "description": "keywords: protect, shield, lock" + }, + "254:551": { + "key": "918ef7436af688003eb418ae8c24a7296b1436b9", + "name": "dashboard", + "description": "keywords: speed, dial" + }, + "254:559": { + "key": "dd10be6851c4fa0dc3c002508405d87b2bc510d4", + "name": "graph", + "description": "keywords: trend, stats, statistics" + }, + "254:565": { + "key": "5009f6511922b5246a5d299410ddcb306467e85f", + "name": "settings", + "description": "keywords: sliders, filters, controls, levels" + }, + "254:576": { + "key": "1ea5a6d509d6a1b93d7622322c1f8a5dc3221b8a", + "name": "project", + "description": "keywords: board, kanban, columns, scrum" + }, + "254:583": { + "key": "dcf55fa29f120ef03c13971e640cb136812eea03", + "name": "play", + "description": "keywords: play, start, begin, action" + }, + "254:587": { + "key": "434849aaf075e36efd54f62ecf3b7d63ad71352e", + "name": "github-action", + "description": "keywords: board, workflow, action, automation" + }, + "254:591": { + "key": "bb74efc39d7585341b33d36593da2fd8afefa4da", + "name": "shield-check", + "description": "keywords: security, shield, protection, check, success" + }, + "254:593": { + "key": "5681157e4abeeff24b4590be4ba15ed8d80b4a58", + "name": "shield-x", + "description": "keywords: security, shield, protection, fail" + }, + "254:595": { + "key": "30f439925d4d66cd893fd4aea3fa1971ddf9ba5a", + "name": "shield", + "description": "keywords: security, shield, protection" + }, + "254:597": { + "key": "b7274e19d7d5521b067f19d2fff3bd2842c8d738", + "name": "saved", + "description": "keywords: saved, bookmark" + }, + "254:600": { + "key": "b242dc11b11bf8bf75483a094daed261a924c4e5", + "name": "unsaved", + "description": "keywords: unsaved, bookmark" + }, + "254:608": { + "key": "d941e45e219b18dc55e0196d4576c3c42a7b3e5b", + "name": "code", + "description": "keywords: brackets" + }, + "254:612": { + "key": "b831a0bdcb737f183fd9e26943c0cdf45f92a952", + "name": "git-branch", + "description": "keywords: fork, branch, git, duplicate" + }, + "254:618": { + "key": "068b2a1d4778725f320fcdf131234401593b23ea", + "name": "diff-added", + "description": "keywords: new, addition, plus" + }, + "254:623": { + "key": "ff597b8674f81bfc3c159488540d4add6c6d5bcb", + "name": "diff-ignored", + "description": "keywords: slash" + }, + "254:628": { + "key": "9fb4c20db500efba9e329697ef6a06f24abe3909", + "name": "diff-modified", + "description": "keywords: dot, changed, updated" + }, + "254:633": { + "key": "4eda4673c3426ff28b32d7107a9d171a1a9d3fcb", + "name": "diff-removed", + "description": "keywords: deleted, subtracted, dash" + }, + "254:638": { + "key": "4b53f782bb73162113b4cb92a0601b3aeccbefec", + "name": "diff-renamed", + "description": "keywords: moved, arrow" + }, + "254:643": { + "key": "5de2f743fb159c4b95601a96de2481e200320d21", + "name": "diff", + "description": "keywords: difference, changes, compare" + }, + "254:650": { + "key": "6ffa1c6a731b567018dbaf3adaabddb458bcee3e", + "name": "circuit-board", + "description": "keywords: developer, hardware, electricity" + }, + "254:656": { + "key": "81a0b79496d4879af4aec5aad1b4a261e3e07af9", + "name": "gist", + "description": "keywords: gist, github" + }, + "254:662": { + "key": "ca9561ec7d96915733688884ac5e6e847d431f1b", + "name": "git-commit", + "description": "keywords: save" + }, + "254:666": { + "key": "0561aafaa59b84803d2e4ba39f2dadc92a5b98b1", + "name": "git-compare", + "description": "keywords: difference, changes" + }, + "254:672": { + "key": "e006c72b6f43cede5024bce65122a09c45fe3ede", + "name": "git-merge", + "description": "keywords: join" + }, + "254:678": { + "key": "24f3918677fd65d7aef910df6df98f1359584fdf", + "name": "git-pull-request", + "description": "keywords: review" + }, + "254:685": { + "key": "8a4c4c13a90693d00c85135e64a74f103969ccad", + "name": "issue-closed", + "description": "keywords: done, complete" + }, + "254:691": { + "key": "78c37327c46ba7c9e5692f7c3c0cd645d9a5e53e", + "name": "issue-opened", + "description": "keywords: new" + }, + "254:697": { + "key": "17a340e1411f22f5868f4bc29ace6a8ba7680516", + "name": "issue-reopened", + "description": "keywords: regression" + }, + "254:703": { + "key": "59c6624f3cdc3fdc68ebb16438bcd6bf16631220", + "name": "database", + "description": "keywords: disks, data" + }, + "254:709": { + "key": "cd403338a76710ad65e7950e0382ab7f05085c00", + "name": "no-newline", + "description": "keywords: return" + }, + "254:715": { + "key": "dd0bc8ed9e32e9e5bed5b8894befcf43fae52745", + "name": "broadcast", + "description": "keywords: rss, radio, signal" + }, + "254:722": { + "key": "64a53af63c4f59f6fda161761f0e07c110ae3fa9", + "name": "keyboard", + "description": "keywords: type, keys, write, shortcuts" + }, + "254:746": { + "key": "7cf4b45f154f23153afd412c8b33e1d2cdf14443", + "name": "file-binary", + "description": "keywords: image, video, word, powerpoint, excel" + }, + "254:756": { + "key": "7764910bf83d61ec3454ff39ab749d1f7ce4371f", + "name": "file-code", + "description": "keywords: text, javascript, html, css, php, ruby, coffeescript, sass, scss" + }, + "254:762": { + "key": "6a358a3a1404dd715117cc52ab99c0dc99584c5d", + "name": "file-directory", + "description": "keywords: folder" + }, + "254:766": { + "key": "ce5e2d7ee73db4caa97d667c8e85785d8ea4c743", + "name": "file-media", + "description": "keywords: image, video, audio" + }, + "254:771": { + "key": "06b6510a05371a056df103ead22085325d99809f", + "name": "file-pdf", + "description": "keywords: adobe" + }, + "254:778": { + "key": "e0559c8e84ecc701692396d90025523a10f57f86", + "name": "file-submodule", + "description": "keywords: folder" + }, + "254:784": { + "key": "0dfbf8771bc0dfbfe96debf191f68f4c6438fb82", + "name": "file-symlink-directory", + "description": "keywords: folder, subfolder, link, alias" + }, + "254:789": { + "key": "f724b73168ed3d1d60d7490cdff552c8d147e59e", + "name": "file-symlink-file", + "description": "keywords: link, alias" + }, + "254:794": { + "key": "20e950ceeeff82bb73ac145c8e59dc98e97542d6", + "name": "file-zip", + "description": "keywords: compress, archive" + }, + "254:805": { + "key": "54ddb7bcee9da121daecaddb5d704f74b2e6e2fe", + "name": "browser", + "description": "keywords: window, web" + }, + "254:813": { + "key": "8f0267f2c305f9f88cff99e0ae3e48b13241648d", + "name": "file", + "description": "keywords: file, text, words" + }, + "254:821": { + "key": "58123003dd9e446565eabdc84091546fbdccf8b4", + "name": "repo-clone", + "description": "keywords: book, journal, repository" + }, + "254:833": { + "key": "b1edd95f1fee16b86eda7976fb00a492ea125794", + "name": "repo-force-push", + "description": "keywords: book, journal, put" + }, + "254:837": { + "key": "10d00de89687d7ddabaec6b0ac51f39de0412e19", + "name": "repo-forked", + "description": "keywords: book, journal, copy" + }, + "254:843": { + "key": "634b9775a41de0de8ff3be7ff250e7b0465c532e", + "name": "repo-pull", + "description": "keywords: book, journal, get" + }, + "254:852": { + "key": "cae311ac5b0ffc745acb2849324f961ddc49655b", + "name": "repo-push", + "description": "keywords: book, journal, repository, put" + }, + "254:858": { + "key": "9adf54f65e59a67c8050269db3f27b84686dcf6f", + "name": "repo", + "description": "keywords: book, journal, repository" + }, + "254:867": { + "key": "29121af9abfdb8376e0d63105aa4f12f7a9d8e13", + "name": "mirror", + "description": "keywords: reflect" + }, + "254:872": { + "key": "163fc7f23712ecf7484916f364381fc501aa7c0c", + "name": "ruby", + "description": "keywords: code, language" + }, + "254:877": { + "key": "87fc622e74a49edd98cab3afb3b1dd69fc48234a", + "name": "server", + "description": "keywords: computers, racks, ops" + }, + "254:895": { + "key": "edf132fc3c39313374324011461ef20c0545f42e", + "name": "terminal", + "description": "keywords: code, ops, shell" + }, + "254:901": { + "key": "feeae0f881a2ba8aa5c9fbb08f58b26b30a48e4a", + "name": "radio-tower", + "description": "keywords: broadcast" + }, + "254:911": { + "key": "11035ffaf8d33b3982472ebbb48a52515891be9e", + "name": "rss", + "description": "keywords: broadcast, feed, atom" + }, + "254:916": { + "key": "3b22c20ae87b119eaccc8be8f293ab62c4847b6d", + "name": "versions", + "description": "keywords: history, commits" + }, + "254:922": { + "key": "b289056431e594b088bc270031118093ac239b1b", + "name": "request-changes", + "description": "keywords: diff, changes, request" + }, + "254:929": { + "key": "8e8e8abb187e8b44dd5ed840c9621b20c1f8e97a", + "name": "dependent", + "description": "keywords: dependency, dependent, file" + }, + "254:931": { + "key": "4d521ba9d16a3b0926baf78ae0d39659ee983628", + "name": "repo-template", + "description": "keywords: book, new, add, template" + }, + "254:939": { + "key": "4dacf00657c3fda302e8b1d0302771dd9b31d0f0", + "name": "repo-template-private", + "description": "keywords: book, new, template" + }, + "254:951": { + "key": "97efb55852e67dadb99025d8670c7f6fa85d5e88", + "name": "squirrel", + "description": "keywords: ship, shipit, launch" + }, + "254:955": { + "key": "fc8ee2004eac3836af9ce15979ba9d6ab1428394", + "name": "zap", + "description": "keywords: electricity, lightning, props, like, star, save" + }, + "254:957": { + "key": "2e9e3df75cfcce1e3b1918d1bee6f919b1a3b9be", + "name": "flame", + "description": "keywords: fire, hot, burn, trending" + }, + "254:959": { + "key": "2dee42c948e3d19bc5a8208b030a269b9171a6e2", + "name": "bug", + "description": "keywords: insect, issue" + }, + "254:968": { + "key": "39e550891158885f19b218b2419081c42aaca7fb", + "name": "person", + "description": "keywords: people, man, woman, human" + }, + "254:970": { + "key": "ae2569c28136436835b29b16f4d408903756c534", + "name": "smiley", + "description": "keywords: emoji, smile, mood, emotion" + }, + "254:977": { + "key": "8f79bda9d0f0cbb75462bc470f41746b3551102d", + "name": "hubot", + "description": "keywords: robot, bot" + }, + "254:984": { + "key": "6e4c170a3ea54e18d04fe5abf262654f6e6a017e", + "name": "thumbsdown", + "description": "keywords: thumb, thumbsdown, rejected, dislike" + }, + "254:986": { + "key": "b7729739ee5cd9102da05053d5d26d6688b6a4a0", + "name": "thumbsup", + "description": "keywords: thumb, thumbsup, prop, ship, like" + }, + "254:988": { + "key": "3d3bdb21f0d2b976a37ec91ef71d084c459da6eb", + "name": "organization", + "description": "keywords: people, group, team" + }, + "254:990": { + "key": "0d75d6690d448738c57b9f336d8c1302489a8ac7", + "name": "gist-secret", + "description": "keywords: gist, secret, private" + }, + "254:997": { + "key": "11313bd9ff510866b6aabf1817930d819c09aa5c", + "name": "eye", + "description": "keywords: look, watch, see" + }, + "254:1002": { + "key": "bf895e940a15df4e67a59ba26abc9ab43b7407cb", + "name": "eye-closed", + "description": "keywords: hidden, invisible, concealed, " + }, + "254:1011": { + "key": "fde50bd8e1faf8f0dfd504ea10a954cf1592f198", + "name": "jersey", + "description": "keywords: team, game, basketball" + }, + "254:1024": { + "key": "64d554b6eed44d4f2409616823c65bfd8959a20e", + "name": "octoface", + "description": "keywords: octocat, brand" + }, + "254:1030": { + "key": "e21a256436a5391ede7f940379119297ebc4d8c1", + "name": "mark-github", + "description": "keywords: octocat, brand, github, logo" + }, + "254:1032": { + "key": "9079fb0dc3fcf6246e884ec06b412be8c4ae9cd4", + "name": "logo-github", + "description": "keywords: brand, github, logo" + }, + "254:1043": { + "key": "1dbeb5a63fb9ab9bd641b79c14b613796d093e89", + "name": "logo-gist", + "description": "keywords: brand, github, logo" + }, + "254:1050": { + "key": "9bdc09193810eb5065c1299df7b20abdac3407de", + "name": "markdown", + "description": "keywords: markup, style" + }, + "254:1055": { + "key": "cacf747dde9b1750116fcbfdf54a26716d07215d", + "name": "paintcan", + "description": "keywords: style, theme, art, color" + } + }, + "schemaVersion": 0, + "styles": { + "121:10": { + "key": "d02739edcd48b09ec255a4a9f358e2e5f2e2e735", + "name": "color-1", + "styleType": "FILL", + "description": "Red" + }, + "121:12": { + "key": "b7b8c9cf193dae1be89209aee9752c850e30b778", + "name": "color-1-lighter", + "styleType": "FILL", + "description": "A lighter Red" + }, + "121:16": { + "key": "83f6e2ae60044142e583fa408631c237903c7ec1", + "name": "color-2", + "styleType": "FILL", + "description": "Purple" + }, + "121:17": { + "key": "7473498fba6e53d84bd0a447effb0e88dbdbe2ee", + "name": "color-3", + "styleType": "FILL", + "description": "Azure" + }, + "121:18": { + "key": "0bc979a29ebb8ee3a61aaffb83da571c91b7de08", + "name": "color-4", + "styleType": "FILL", + "description": "Green" + }, + "122:14": { + "key": "6e14db5f6acbae9bfef0547cae4e3f04b402d914", + "name": "h1", + "styleType": "TEXT", + "description": "" + }, + "122:16": { + "key": "6e820f2a168a7f11999a0cbb808f48f5e36696cc", + "name": "h2", + "styleType": "TEXT", + "description": "" + }, + "122:18": { + "key": "2be54d392ec92ad74ec677c999358b07fd156c10", + "name": "regular-text", + "styleType": "TEXT", + "description": "" + }, + "124:8": { + "key": "1426ed1cd4c68f630aa10523beb407909a2bae0c", + "name": "drop-shadow", + "styleType": "EFFECT", + "description": "" + }, + "124:18": { + "key": "67b3f77be290d095694e2e8e362ffba5e071b363", + "name": "grid-12", + "styleType": "GRID", + "description": "" + }, + "296:7": { + "key": "444dda330d40efce38f0b703b8962ff019f737cd", + "name": "layer-blur", + "styleType": "EFFECT", + "description": "" + }, + "330:1": { + "key": "c21f1ac25019936fae6f38979388f814754a7bc6", + "name": "unused-color", + "styleType": "FILL", + "description": "This color is not used at all!" + }, + "336:5": { + "key": "7ace104fa7f0bbffe8dad186b51a1079ad7bd344", + "name": "color-alpha-50", + "styleType": "FILL", + "description": "Red color with 50% opacity +\nComment on multi-line." + }, + "339:0": { + "key": "ca76fd2c5e5f71974e55549c111d41c473e855d4", + "name": "color-linear-gradient", + "styleType": "FILL", + "description": "Simple linear gradient from left to right" + }, + "339:1": { + "key": "35c672b046b8173baac81cc61a0241a9a8d01b92", + "name": "color-radial-gradient", + "styleType": "FILL", + "description": "" + }, + "339:2": { + "key": "d0c2453c62630a3cd58c1435d830d8821df507ec", + "name": "color-angular-gradient", + "styleType": "FILL", + "description": "" + }, + "339:3": { + "key": "90f619f8ebf9a6f6c81bf506eb65ff9086ffbe8e", + "name": "color-diamond-gradient", + "styleType": "FILL", + "description": "" + }, + "339:5": { + "key": "fe30eed360a59f15e1cd326b5e8247f9ff4a81a0", + "name": "color-linear-gradient-complex", + "styleType": "FILL", + "description": "" + }, + "339:7": { + "key": "b3d6255ef9733a86cafa0bf8cf848a842bad82ec", + "name": "color-image", + "styleType": "FILL", + "description": "" + }, + "341:2": { + "key": "0bfb4a37fde204ef53adedbc140680d7b1f8050f", + "name": "color-linear-gradient-alpha", + "styleType": "FILL", + "description": "" + }, + "376:2": { + "key": "8aa2536fd13f4f1b0158fcd337435c47f83787bd", + "name": "inner-shadow", + "styleType": "EFFECT", + "description": "" + }, + "376:9": { + "key": "ed9d4c3b8a50d1ddba2917a01c4c47b2653aeaaf", + "name": "background-blur", + "styleType": "EFFECT", + "description": "" + }, + "376:13": { + "key": "3134cfdf4d6c2bb3fd5a243470031d85d1f161e8", + "name": "mixed-effects", + "styleType": "EFFECT", + "description": "" + }, + "376:15": { + "key": "17f0bb867b5b4c1b164852f8cc699004f7ad02f5", + "name": "inner-shadow-bottom", + "styleType": "EFFECT", + "description": "" + }, + "400:33": { + "key": "91b12525958848768963670014469c0d108f1c05", + "name": "deleted-text", + "styleType": "TEXT", + "description": "" + }, + "254:1": { + "key": "6a6e935eeeeba50804fa8b585c83b3e9345a4292", + "name": "black", + "styleType": "FILL", + "description": "" + }, + "254:2": { + "key": "490cd1a314b5230529a5096de651946b0759fd88", + "name": "f2", + "styleType": "TEXT", + "description": "" + }, + "254:3": { + "key": "a1524e3c2092cf12ac2c12b783d2b88f6605977e", + "name": "#E1E4E8", + "styleType": "FILL", + "description": "" + } + }, + "name": "Figma Export", + "lastModified": "2020-08-24T18:54:01.338964Z", + "thumbnailUrl": "https://s3-alpha-sig.figma.com/thumbnails/2c78ef9d-68ae-4a11-b141-98e48fb16812?Expires=1599436800&Signature=MSSThvf1c~QTgSeBHiZqi5l78wACbHsTgRkOST239RhRqeimRu3rA9uf2poP38yHgmOSScDoAr4BDDKHk6mi~Vr9UoMvUwH4kNiSykhP68eftHTJGVXCfp7MoJ9n78vRoupWu~Xr9pXkfA5rCwTYX1bKsjj8XTfr~GWEU00~yzXyiwYBSKszTel3f1GCKbhtIcFkgh8kYZPpBhqOt0lTCgXMWTXK2q4PReOpcLtOgvc0mJbO4-k5MOERfgfQg4cV98KIj0w~D1q5su2KjmDULi1Qt4gr~gKvhLtUqjHU4Ea-Dryf9XwV~eRSGfGfNlQFkwD-PA~Pk6JYHFca42B~Ng__&Key-Pair-Id=APKAINTVSUGEWH5XD5UA", + "version": "432858726", + "role": "owner" +} diff --git a/packages/core/src/lib/export-components.test.ts b/packages/core/src/lib/export-components.test.ts new file mode 100644 index 00000000..2560bdbd --- /dev/null +++ b/packages/core/src/lib/export-components.test.ts @@ -0,0 +1,130 @@ +import sinon from 'sinon'; +import { expect } from 'chai'; +import nock from 'nock'; + +import * as Figma from 'figma-js'; + +import * as figmaDocument from './_config.test'; +import * as FigmaExport from './figma'; + +import { components as exportComponents } from './export-components'; + +describe('export-component', () => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let logger: sinon.SinonSpy; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let outputter: sinon.SinonSpy; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let transformer: sinon.SinonSpy; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let clientFileImages: sinon.SinonStub; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let clientFile: sinon.SinonStub; + + let client: Figma.ClientInterface; + let nockScope: nock.Scope; + + beforeEach(() => { + logger = sinon.spy(); + outputter = sinon.spy(); + transformer = sinon.spy((svg) => svg); + + clientFileImages = sinon.stub().returns({ + data: { + images: { + A1: 'https://example.com/A1.svg', + B2: 'https://example.com/B2.svg', + }, + }, + }); + + clientFile = sinon.stub().resolves({ + data: { + document: figmaDocument.createDocument({ children: [figmaDocument.page1, figmaDocument.page2] }), + }, + }); + + client = { + ...({} as Figma.ClientInterface), + fileImages: clientFileImages, + file: clientFile, + }; + + nockScope = nock('https://example.com', { reqheaders: { 'Content-Type': 'images/svg+xml' } }) + .get('/A1.svg') + .reply(200, figmaDocument.svg.content) + .get('/B2.svg') + .reply(200, figmaDocument.svg.content); + + sinon.stub(FigmaExport, 'getClient').returns(client); + }); + + afterEach(() => { + sinon.restore(); + nock.cleanAll(); + }); + + it('should use transformers and outputter to export components', async () => { + const pagesWithSvg = await exportComponents({ + fileId: 'fileABCD', + token: 'token1234', + log: logger, + outputters: [outputter], + transformers: [transformer], + }); + + nockScope.done(); + + expect(FigmaExport.getClient).to.have.been.calledOnceWithExactly('token1234'); + expect(clientFileImages).to.have.been.calledOnceWith('fileABCD', { + format: 'svg', + ids: ['10:8', '8:1', '9:1'], + svg_include_id: true, + }); + expect(clientFile).to.have.been.calledOnceWithExactly('fileABCD'); + + expect(logger).to.have.been.calledTwice; + expect(logger.firstCall).to.have.been.calledWith('fetching document'); + expect(logger.secondCall).to.have.been.calledWith('fetching components'); + + expect(transformer).to.have.been.calledTwice; + expect(transformer.firstCall).to.have.been.calledWith(figmaDocument.svg.content); + expect(transformer.secondCall).to.have.been.calledWith(figmaDocument.svg.content); + + expect(outputter).to.have.been.calledOnceWithExactly(pagesWithSvg); + }); + + it('should use default "logger" if not defined', async () => { + await exportComponents({ + fileId: 'fileABCD', + token: 'token1234', + }); + + /* eslint-disable no-console */ + expect(console.log).to.have.been.calledTwice; + expect((console.log as sinon.SinonSpy).firstCall).to.have.been.calledWith('fetching document'); + expect((console.log as sinon.SinonSpy).secondCall).to.have.been.calledWith('fetching components'); + }); + + it('should throw an error if fetching document fails', async () => { + clientFile.returns({}); + + await expect(exportComponents({ + fileId: 'fileABCD', + token: 'token1234', + })).to.be.rejectedWith(Error, '\'document\' is missing.'); + }); + + it('should throw an error if fetching a document without components', async () => { + clientFile.resolves({ + data: { + document: figmaDocument.createDocument({ children: [figmaDocument.pageWithoutComponents] }), + }, + }); + + await expect(exportComponents({ + fileId: 'fileABCD', + token: 'token1234', + })).to.be.rejectedWith(Error, 'No components found'); + }); +}); diff --git a/packages/core/src/lib/export-components.ts b/packages/core/src/lib/export-components.ts index c8289749..9f1e6bec 100644 --- a/packages/core/src/lib/export-components.ts +++ b/packages/core/src/lib/export-components.ts @@ -1,18 +1,14 @@ -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import { Document } from 'figma-js'; -import { - getClient, - getPages, - enrichPagesWithSvg, -} from './figma'; +import { getClient, getPages, enrichPagesWithSvg } from './figma'; type Options = { token: string; fileId: string; onlyFromPages?: string[]; transformers?: FigmaExport.StringTransformer[]; - outputters?: FigmaExport.Outputter[]; + outputters?: FigmaExport.ComponentOutputter[]; log?: (msg: string) => void; } diff --git a/packages/core/src/lib/export-styles.test.ts b/packages/core/src/lib/export-styles.test.ts new file mode 100644 index 00000000..81f80692 --- /dev/null +++ b/packages/core/src/lib/export-styles.test.ts @@ -0,0 +1,86 @@ +import sinon from 'sinon'; +import { expect } from 'chai'; + +import * as Figma from 'figma-js'; + +import * as FigmaExport from './figma'; + +import { styles as exportStyles } from './export-styles'; + +import file from './_mocks_/figma.files.json'; +import fileNodes from './_mocks_/figma.fileNodes.json'; + +const nodeIds = Object.keys(fileNodes.nodes); + +describe('export-styles', () => { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let logger: sinon.SinonSpy; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let outputter: sinon.SinonSpy; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let clientFileNodes: sinon.SinonStub; + // eslint-disable-next-line @typescript-eslint/no-explicit-any + let clientFile: sinon.SinonStub; + + let client: Figma.ClientInterface; + + beforeEach(() => { + logger = sinon.spy(); + outputter = sinon.spy(); + + clientFile = sinon.stub().resolves({ data: file }); + clientFileNodes = sinon.stub().resolves({ data: fileNodes }); + + client = { + ...({} as Figma.ClientInterface), + file: clientFile, + fileNodes: clientFileNodes, + }; + + sinon.stub(FigmaExport, 'getClient').returns(client); + }); + + afterEach(() => { + sinon.restore(); + }); + + it('should use outputter to export styles', async () => { + const pagesWithSvg = await exportStyles({ + fileId: 'fileABCD', + token: 'token1234', + log: logger, + outputters: [outputter], + }); + + expect(FigmaExport.getClient).to.have.been.calledOnceWithExactly('token1234'); + expect(clientFileNodes).to.have.been.calledOnceWith('fileABCD', { ids: nodeIds }); + expect(clientFile).to.have.been.calledOnceWithExactly('fileABCD'); + + expect(logger).to.have.been.calledTwice; + expect(logger.firstCall).to.have.been.calledWith('fetching styles'); + expect(logger.secondCall).to.have.been.calledWith('parsing styles'); + + expect(outputter).to.have.been.calledOnceWithExactly(pagesWithSvg); + }); + + it('should use default "logger" if not defined', async () => { + await exportStyles({ + fileId: 'fileABCD', + token: 'token1234', + }); + + /* eslint-disable no-console */ + expect(console.log).to.have.been.calledTwice; + expect((console.log as sinon.SinonSpy).firstCall).to.have.been.calledWith('fetching styles'); + expect((console.log as sinon.SinonSpy).secondCall).to.have.been.calledWith('parsing styles'); + }); + + it('should throw an error if fetching styles fails', async () => { + clientFile.returns({}); + + await expect(exportStyles({ + fileId: 'fileABCD', + token: 'token1234', + })).to.be.rejectedWith(Error, '\'styles\' are missing.'); + }); +}); diff --git a/packages/core/src/lib/export-styles.ts b/packages/core/src/lib/export-styles.ts new file mode 100644 index 00000000..b43031cc --- /dev/null +++ b/packages/core/src/lib/export-styles.ts @@ -0,0 +1,36 @@ +import * as FigmaExport from '@figma-export/types'; + +import { getClient } from './figma'; +import { fetchStyles, parseStyles } from './figmaStyles'; + +type Options = { + token: string; + fileId: string; + onlyFromPages?: string[]; + // transformers?: FigmaExport.StringTransformer[]; + outputters?: FigmaExport.StyleOutputter[]; + log?: (msg: string) => void; +} + +export const styles = async ({ + token, + fileId, + // transformers = [], + outputters = [], + log = (msg): void => { + // eslint-disable-next-line no-console + console.log(msg); + }, +}: Options): Promise => { + const client = getClient(token); + + log('fetching styles'); + const styleNodes = await fetchStyles(client, fileId); + + log('parsing styles'); + const parsedStyles = await parseStyles(styleNodes); + + await Promise.all(outputters.map((outputter) => outputter(parsedStyles))); + + return parsedStyles; +}; diff --git a/packages/core/src/lib/figma.test.ts b/packages/core/src/lib/figma.test.ts index a31ad3b6..afd81689 100644 --- a/packages/core/src/lib/figma.test.ts +++ b/packages/core/src/lib/figma.test.ts @@ -2,7 +2,7 @@ import sinon from 'sinon'; import { expect } from 'chai'; import nock from 'nock'; -import { ClientInterface } from 'figma-js'; +import * as Figma from 'figma-js'; import * as figmaDocument from './_config.test'; import * as figma from './figma'; @@ -14,6 +14,10 @@ describe('figma.', () => { .reply(200, figmaDocument.svg.content); }); + afterEach(() => { + sinon.restore(); + }); + describe('getComponents', () => { it('should get zero results if no children are provided', () => { expect(figma.getComponents()).to.eql([]); @@ -30,17 +34,6 @@ describe('figma.', () => { }); }); - describe('getIdsFromPages', () => { - it('should get component ids from specified pages', () => { - const document = figmaDocument.createDocument({ children: [figmaDocument.page1, figmaDocument.page2] }); - const pages = figma.getPages(document, { - only: 'page2', - }); - - expect(figma.getIdsFromPages(pages)).to.eql(['9:1']); - }); - }); - describe('getPages', () => { const document = figmaDocument.createDocument({ children: [figmaDocument.page1, figmaDocument.page2] }); @@ -83,18 +76,35 @@ describe('figma.', () => { }); }); - describe('getFigmaClient', () => { + describe('getIdsFromPages', () => { + it('should get component ids from specified pages', () => { + const document = figmaDocument.createDocument({ children: [figmaDocument.page1, figmaDocument.page2] }); + const pages = figma.getPages(document, { + only: 'page2', + }); + + expect(figma.getIdsFromPages(pages)).to.eql(['9:1']); + }); + }); + + describe('getClient', () => { it('should not create a figma client if no token is provided', () => { expect(() => { figma.getClient(''); }).to.throw(Error); }); + + it('should create a figma client providing a token', () => { + sinon.spy(Figma, 'Client'); + figma.getClient('token1234'); + expect(Figma.Client).to.have.been.calledOnceWith({ personalAccessToken: 'token1234' }); + }); }); describe('fileImages', () => { it('should get a pair id-url based of provided ids', async () => { const client = { - ...({} as ClientInterface), + ...({} as Figma.ClientInterface), fileImages: sinon.stub().returns({ data: { images: { @@ -123,7 +133,7 @@ describe('figma.', () => { describe('fileSvgs', () => { it('should get a pair id-url based of provided ids', async () => { const client = { - ...({} as ClientInterface), + ...({} as Figma.ClientInterface), fileImages: sinon.stub().returns({ data: { images: { @@ -146,4 +156,8 @@ describe('figma.', () => { }); }); }); + + describe.skip('enrichPagesWithSvg', () => { + it('TODO: move here test from "export-components.test.ts"'); + }); }); diff --git a/packages/core/src/lib/figma.ts b/packages/core/src/lib/figma.ts index 0c70eb24..42002823 100644 --- a/packages/core/src/lib/figma.ts +++ b/packages/core/src/lib/figma.ts @@ -1,7 +1,7 @@ import * as Figma from 'figma-js'; import { basename, dirname } from 'path'; -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import { toArray, diff --git a/packages/core/src/lib/figmaStyles/effectStyle.ts b/packages/core/src/lib/figmaStyles/effectStyle.ts new file mode 100644 index 00000000..8fb11762 --- /dev/null +++ b/packages/core/src/lib/figmaStyles/effectStyle.ts @@ -0,0 +1,58 @@ +import * as Figma from 'figma-js'; +import * as FigmaExport from '@figma-export/types'; + +import { notEmpty } from '../utils'; +import { extractColor } from './paintStyle'; + +const createEffectStyle = (effect: Figma.Effect): FigmaExport.EffectStyle | undefined => { + // eslint-disable-next-line default-case + switch (effect.type) { + case 'INNER_SHADOW': + case 'DROP_SHADOW': { + const color = extractColor(effect); + const spreadRadius = 0; + const inset = effect.type === 'INNER_SHADOW'; + + if (color && effect.offset) { + return { + type: effect.type, + visible: effect.visible, + color, + inset, + offset: effect.offset, + blurRadius: effect.radius, + spreadRadius, + value: `${inset ? 'inset ' : ''}${effect.offset.x}px ${effect.offset.y}px ${effect.radius}px ${spreadRadius}px ${color.rgba}`, + }; + } + + break; + } + + case 'LAYER_BLUR': { + return { + type: effect.type, + visible: effect.visible, + blurRadius: effect.radius, + value: `blur(${effect.radius}px)`, + }; + } + } + + return undefined; +}; + +const parse = (node: FigmaExport.StyleNode): FigmaExport.StyleTypeEffect | undefined => { + if (node.styleType === 'EFFECT' && node.type === 'RECTANGLE') { + return { + styleType: 'EFFECT', + effects: node.effects.map(createEffectStyle).filter(notEmpty), + }; + } + + return undefined; +}; + +export { + parse, +}; diff --git a/packages/core/src/lib/figmaStyles/gridStyle.ts b/packages/core/src/lib/figmaStyles/gridStyle.ts new file mode 100644 index 00000000..6e9825c4 --- /dev/null +++ b/packages/core/src/lib/figmaStyles/gridStyle.ts @@ -0,0 +1,15 @@ +import * as FigmaExport from '@figma-export/types'; + +const parse = (node: FigmaExport.StyleNode): FigmaExport.StyleTypeGrid | undefined => { + if (node.styleType === 'GRID' && node.type === 'FRAME') { + return { + styleType: 'GRID', + }; + } + + return undefined; +}; + +export { + parse, +}; diff --git a/packages/core/src/lib/figmaStyles/index.test.ts b/packages/core/src/lib/figmaStyles/index.test.ts new file mode 100644 index 00000000..ae28f059 --- /dev/null +++ b/packages/core/src/lib/figmaStyles/index.test.ts @@ -0,0 +1,361 @@ +/* eslint-disable max-len */ +/* eslint-disable object-curly-newline */ + +import sinon from 'sinon'; +import { expect } from 'chai'; + +import * as Figma from 'figma-js'; +import * as FigmaExport from '@figma-export/types'; + +import * as figmaStyles from './index'; + +import file from '../_mocks_/figma.files.json'; +import fileNodes from '../_mocks_/figma.fileNodes.json'; + +const nodeIds = Object.keys(fileNodes.nodes); + +const getNode = (styleNodes: FigmaExport.StyleNode[], name: string): FigmaExport.StyleNode => { + const node = styleNodes.find((n) => n.name === name); + + if (!node) { + throw new Error('\'node\' cannot be undefined'); + } + + return node; +}; + +describe('figmaStyles.', () => { + describe('fetch', () => { + it('should throw an error if styles are not present', async () => { + const client = { + ...({} as Figma.ClientInterface), + file: sinon.stub().resolves({ data: {} }), + }; + + await expect(figmaStyles.fetchStyles(client, 'ABC123')).to.be.rejectedWith(Error, '\'styles\' are missing.'); + }); + + it('should fetch style from a specified Figma fileId', async () => { + const client = { + ...({} as Figma.ClientInterface), + file: sinon.stub().resolves({ + data: { + styles: { + '121:10': { name: 'color-1', styleType: 'FILL' }, + '131:20': { name: 'text-A', styleType: 'TEXT' }, + }, + }, + }), + fileNodes: sinon.stub().resolves({ + data: { + nodes: { + '121:10': { + document: { id: '121:10', name: 'color-1' }, + }, + '131:20': { + document: { id: '131:20', name: 'text-A' }, + }, + }, + }, + }), + }; + + const styleNodes = await figmaStyles.fetchStyles(client, 'ABC123'); + + expect(client.file).to.have.been.calledOnceWith('ABC123'); + expect(client.fileNodes).to.have.been.calledWith('ABC123', { ids: ['121:10', '131:20'] }); + + expect(styleNodes.length).to.equal(2); + expect(styleNodes).to.deep.equal([ + { id: '121:10', name: 'color-1', styleType: 'FILL' }, + { id: '131:20', name: 'text-A', styleType: 'TEXT' }, + ]); + }); + + it('should fetch style from a specified Figma fileId using a real example (mocked)', async () => { + const client = { + ...({} as Figma.ClientInterface), + file: sinon.stub().resolves({ data: file }), + fileNodes: sinon.stub().resolves({ data: fileNodes }), + }; + + const styleNodes = await figmaStyles.fetchStyles(client, 'ABC123'); + + expect(client.file).to.have.been.calledOnceWith('ABC123'); + expect(client.fileNodes).to.have.been.calledWith('ABC123', { ids: nodeIds }); + + expect(styleNodes.length).to.equal(28); + expect(styleNodes.filter((node) => node.visible !== false).length).to.equal(28 - 3); + expect(styleNodes.filter((node) => node?.id === '121:10')[0]?.name).to.equal('color-1'); + expect(styleNodes.filter((node) => node?.id === '121:10')[0]?.styleType).to.equal('FILL'); + expect(styleNodes.filter((node) => node?.id === '121:10')[0]?.type).to.equal('RECTANGLE'); + }); + }); + + describe('parse', () => { + let styleNodes: FigmaExport.StyleNode[] = []; + + beforeEach(async () => { + const client = { + ...({} as Figma.ClientInterface), + file: sinon.stub().resolves({ data: file }), + fileNodes: sinon.stub().resolves({ data: fileNodes }), + }; + + styleNodes = await figmaStyles.fetchStyles(client, 'ABC123'); + }); + + describe('Color Styles', () => { + it('should parse a solid color', () => { + const node = getNode(styleNodes, 'color-2'); + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'FILL', + visible: true, + name: 'color-2', + comment: 'Purple', + originalNode: node, + fills: [{ + type: 'SOLID', + visible: true, + color: { + r: 162, + g: 89, + b: 255, + a: 1, + rgba: 'rgba(162, 89, 255, 1)', + }, + value: 'rgba(162, 89, 255, 1)', + }], + }, + ]); + }); + + it('should parse a solid color with alpha (with comment on multi-line)', () => { + const node = getNode(styleNodes, 'color-alpha-50'); + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'FILL', + visible: true, + name: 'color-alpha-50', + comment: 'Red color with 50% opacity +\nComment on multi-line.', + originalNode: node, + fills: [{ + type: 'SOLID', + visible: true, + color: { + r: 242, + g: 78, + b: 30, + a: 0.5, + rgba: 'rgba(242, 78, 30, 0.5)', + }, + value: 'rgba(242, 78, 30, 0.5)', + }], + }, + ]); + }); + + it('should parse a linear gradient', () => { + const node = getNode(styleNodes, 'color-linear-gradient-complex'); + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'FILL', + visible: true, + name: 'color-linear-gradient-complex', + comment: '', + originalNode: node, + fills: [{ + type: 'GRADIENT_LINEAR', + visible: true, + angle: '135deg', + gradientStops: [ + { color: { r: 242, g: 78, b: 30, a: 1, rgba: 'rgba(242, 78, 30, 1)' }, position: 0 }, + { color: { r: 184, g: 89, b: 255, a: 1, rgba: 'rgba(184, 89, 255, 1)' }, position: 34.375 }, + { color: { r: 10, g: 207, b: 131, a: 1, rgba: 'rgba(10, 207, 131, 1)' }, position: 64.583 }, + { color: { r: 26, g: 188, b: 254, a: 1, rgba: 'rgba(26, 188, 254, 1)' }, position: 100 }, + ], + value: 'linear-gradient(135deg, rgba(242, 78, 30, 1) 0%, rgba(184, 89, 255, 1) 34.375%, rgba(10, 207, 131, 1) 64.583%, rgba(26, 188, 254, 1) 100%)', + }], + }, + ]); + }); + }); + + describe('Effect Styles', () => { + it('should not parse a non visible effect style', () => { + const originalNode = getNode(styleNodes, 'inner-shadow'); + const node = { + ...originalNode, + effects: [{ + ...(originalNode as Figma.Rectangle).effects[0], + visible: false, + }], + }; + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'EFFECT', + visible: true, + name: 'inner-shadow', + comment: '', + originalNode: node, + effects: [{ + type: 'INNER_SHADOW', + visible: false, + offset: { + x: 4, + y: 5, + }, + inset: true, + blurRadius: 10, + spreadRadius: 0, + color: { + r: 242, + g: 78, + b: 30, + a: 0.5, + rgba: 'rgba(242, 78, 30, 0.5)', + }, + value: 'inset 4px 5px 10px 0px rgba(242, 78, 30, 0.5)', + }], + }, + ]); + }); + + it('should parse a Inner Shadow effect', () => { + const node = getNode(styleNodes, 'inner-shadow'); + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'EFFECT', + visible: true, + name: 'inner-shadow', + comment: '', + originalNode: node, + effects: [{ + type: 'INNER_SHADOW', + visible: true, + offset: { + x: 4, + y: 5, + }, + inset: true, + blurRadius: 10, + spreadRadius: 0, + color: { + r: 242, + g: 78, + b: 30, + a: 0.5, + rgba: 'rgba(242, 78, 30, 0.5)', + }, + value: 'inset 4px 5px 10px 0px rgba(242, 78, 30, 0.5)', + }], + }, + ]); + }); + + it('should parse a Drop Shadow effect', () => { + const node = getNode(styleNodes, 'drop-shadow'); + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'EFFECT', + visible: true, + name: 'drop-shadow', + comment: '', + originalNode: node, + effects: [{ + type: 'DROP_SHADOW', + visible: true, + offset: { + x: 3, + y: 4, + }, + inset: false, + blurRadius: 7, + spreadRadius: 0, + color: { + r: 0, + g: 0, + b: 0, + a: 0.25, + rgba: 'rgba(0, 0, 0, 0.25)', + }, + value: '3px 4px 7px 0px rgba(0, 0, 0, 0.25)', + }], + }, + ]); + }); + + it('should parse a Layer Blur effect', () => { + const node = getNode(styleNodes, 'layer-blur'); + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'EFFECT', + visible: true, + name: 'layer-blur', + comment: '', + originalNode: node, + effects: [{ + type: 'LAYER_BLUR', + visible: true, + blurRadius: 4, + value: 'blur(4px)', + }], + }, + ]); + }); + }); + + describe('Text Styles', () => { + it('should parse a Text style', () => { + const node = getNode(styleNodes, 'h1'); + + const parsed = figmaStyles.parseStyles([node]); + + expect(parsed).to.deep.equal([ + { + styleType: 'TEXT', + visible: true, + name: 'h1', + comment: '', + originalNode: node, + style: { + fontFamily: 'Spinnaker', + fontSize: 24, + fontStyle: 'normal', + fontVariant: 'normal', + fontWeight: 400, + letterSpacing: 2, + lineHeightPx: 30, + textAlign: 'left', + textDecoration: 'underline', + textTransform: 'capitalize', + verticalAlign: 'top', + }, + }, + ]); + }); + }); + }); +}); diff --git a/packages/core/src/lib/figmaStyles/index.ts b/packages/core/src/lib/figmaStyles/index.ts new file mode 100644 index 00000000..fc2c570b --- /dev/null +++ b/packages/core/src/lib/figmaStyles/index.ts @@ -0,0 +1,53 @@ +import * as Figma from 'figma-js'; +import * as FigmaExport from '@figma-export/types'; + +import { notEmpty } from '../utils'; + +import { parse as parsePaintStyle } from './paintStyle'; +import { parse as parseEffectStyle } from './effectStyle'; +import { parse as parseTextStyle } from './textStyle'; +// import { parse as parseGridStyle } from './gridStyle'; + +const fetchStyles = async (client: Figma.ClientInterface, fileId: string): Promise => { + const { data: { styles } = {} } = await client.file(fileId); + + if (!styles) { + throw new Error('\'styles\' are missing.'); + } + + const { data: { nodes } } = await client.fileNodes(fileId, { ids: Object.keys(styles) }); + + const styleNodes = Object.values(nodes).map((node) => node?.document); + + return styleNodes.map((node) => ({ + ...(node ? styles[node.id] : ({} as Figma.Style)), + ...(node as Figma.Node), + })); +}; + +const parseStyles = (styleNodes: FigmaExport.StyleNode[]): FigmaExport.Style[] => { + return styleNodes.map((node) => { + const parsedStyles = undefined + || parsePaintStyle(node) + || parseEffectStyle(node) + || parseTextStyle(node); + // || parseGridStyle(node) + + if (!parsedStyles) { + return undefined; + } + + return { + name: node.name, + comment: node.description, + visible: node.visible !== false, + originalNode: node, + ...parsedStyles, + }; + }).filter(notEmpty); +}; + +export { + fetchStyles, + parseStyles, +}; diff --git a/packages/core/src/lib/figmaStyles/paintStyle.ts b/packages/core/src/lib/figmaStyles/paintStyle.ts new file mode 100644 index 00000000..962481c5 --- /dev/null +++ b/packages/core/src/lib/figmaStyles/paintStyle.ts @@ -0,0 +1,115 @@ +import * as Figma from 'figma-js'; +import * as FigmaExport from '@figma-export/types'; + +import { notEmpty } from '../utils'; + +const extractColor = ({ color, opacity }: FigmaExport.ExtractableColor): (FigmaExport.Color | undefined) => { + if (!color) { + return undefined; + } + + const convert = (figmaColor: number) => parseInt((figmaColor * 255).toFixed(0), 10); + + // eslint-disable-next-line object-curly-newline + let { r = 0, g = 0, b = 0, a = 1 } = color; + + r = convert(r); + g = convert(g); + b = convert(b); + a = opacity || a; + + return { + r, + g, + b, + a, + rgba: `rgba(${r}, ${g}, ${b}, ${a})`, + }; +}; + +const extractGradientLinear = (paint: Figma.Paint): (FigmaExport.LinearGradient | undefined) => { + if (!paint.gradientStops || !paint.gradientHandlePositions) { + return undefined; + } + + const getAngle = (figmaGradientHandlePositions: readonly Figma.Vector2[]): string => { + const [startPoint, endPoint] = figmaGradientHandlePositions; + const deltaY = (endPoint.y - startPoint.y); + const deltaX = (endPoint.x - startPoint.x); + const deg = ((Math.atan2(deltaY, deltaX) * 180) / Math.PI) + 90; + return `${parseFloat(deg.toFixed(2))}deg`; + }; + + const getGradientStops = (figmaGradientStops: readonly Figma.ColorStop[]): FigmaExport.LinearColorStop[] => { + const gradientStops: FigmaExport.LinearColorStop[] = []; + + figmaGradientStops.forEach((stop) => { + const color = extractColor(stop); + const position = parseFloat((stop.position * 100).toFixed(3)); + + if (color) { + gradientStops.push({ color, position }); + } + }); + + return gradientStops; + }; + + return { + angle: getAngle(paint.gradientHandlePositions), + gradientStops: getGradientStops(paint.gradientStops), + }; +}; + +const createFillStyles = (fill: Figma.Paint): FigmaExport.FillStyle | undefined => { + // eslint-disable-next-line default-case + switch (fill.type) { + case 'SOLID': { + const color = extractColor(fill); + if (color) { + return { + type: 'SOLID', + visible: fill.visible !== false, + color, + value: color.rgba, + }; + } + + break; + } + + case 'GRADIENT_LINEAR': { + const gradient = extractGradientLinear(fill); + if (gradient) { + return { + type: 'GRADIENT_LINEAR', + visible: fill.visible !== false, + ...gradient, + value: `linear-gradient(${gradient.angle}, ${gradient.gradientStops.map((stop) => { + return `${stop.color.rgba} ${stop.position}%`; + }).join(', ')})`, + }; + } + + break; + } + } + + return undefined; +}; + +const parse = (node: FigmaExport.StyleNode): FigmaExport.StyleTypeFill | undefined => { + if (node.styleType === 'FILL' && node.type === 'RECTANGLE') { + return { + styleType: 'FILL', + fills: node.fills.map(createFillStyles).filter(notEmpty), + }; + } + + return undefined; +}; + +export { + parse, + extractColor, +}; diff --git a/packages/core/src/lib/figmaStyles/textStyle.ts b/packages/core/src/lib/figmaStyles/textStyle.ts new file mode 100644 index 00000000..d1dbcf5e --- /dev/null +++ b/packages/core/src/lib/figmaStyles/textStyle.ts @@ -0,0 +1,93 @@ +import * as Figma from 'figma-js'; +import * as FigmaExport from '@figma-export/types'; + +const translateTextTransform = (figmaTextCase?: string): FigmaExport.TextTransform => { + const map: { [key: string]: FigmaExport.TextTransform } = { + undefined: 'none', + UPPER: 'uppercase', + LOWER: 'lowercase', + TITLE: 'capitalize', + }; + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + return map[figmaTextCase!] || map.undefined; +}; + +const translateFontVariant = (figmaTextCase?: string): FigmaExport.FontVariant => { + const map: { [key: string]: FigmaExport.FontVariant } = { + undefined: 'normal', + SMALL_CAPS: 'small-caps', + SMALL_CAPS_FORCED: 'all-small-caps', + }; + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + return map[figmaTextCase!] || map.undefined; +}; + +const translateTextDecoration = (figmaTextDecoration?: string): FigmaExport.TextDecoration => { + const map: { [key: string]: FigmaExport.TextDecoration } = { + undefined: 'none', + STRIKETHROUGH: 'line-through', + UNDERLINE: 'underline', + }; + + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + return map[figmaTextDecoration!] || map.undefined; +}; + +const translateTextAlign = (figmaTextAlignHorizontal: string): FigmaExport.TextAlign => { + const map: { [key: string]: FigmaExport.TextAlign } = { + LEFT: 'left', + RIGHT: 'right', + CENTER: 'center', + JUSTIFIED: 'justify', + }; + + return map[figmaTextAlignHorizontal]; +}; + +const translateVerticalAlign = (figmaTextAlignVertical: string): FigmaExport.VerticalAlign => { + const map: { [key: string]: FigmaExport.VerticalAlign } = { + TOP: 'top', + CENTER: 'middle', + BOTTOM: 'bottom', + }; + + return map[figmaTextAlignVertical]; +}; + +const createTextStyle = (textNode: Figma.Style & Figma.Text): FigmaExport.TextStyle => { + const { + fontFamily, fontWeight, fontSize, lineHeightPx, letterSpacing, + italic, textCase, textDecoration, textAlignHorizontal, textAlignVertical, + } = textNode.style; + + return { + fontFamily, + fontWeight, + fontSize, + lineHeightPx, + letterSpacing, + fontStyle: italic ? 'italic' : 'normal', + fontVariant: translateFontVariant(textCase), + textTransform: translateTextTransform(textCase), + textDecoration: translateTextDecoration(textDecoration), + textAlign: translateTextAlign(textAlignHorizontal), + verticalAlign: translateVerticalAlign(textAlignVertical), + }; +}; + +const parse = (node: FigmaExport.StyleNode): FigmaExport.StyleTypeText | undefined => { + if (node.styleType === 'TEXT' && node.type === 'TEXT') { + return { + styleType: 'TEXT', + style: createTextStyle(node), + }; + } + + return undefined; +}; + +export { + parse, +}; diff --git a/packages/core/src/lib/utils.ts b/packages/core/src/lib/utils.ts index b2c10fb4..197a7549 100644 --- a/packages/core/src/lib/utils.ts +++ b/packages/core/src/lib/utils.ts @@ -32,9 +32,14 @@ const fetchAsSvgXml = (url: string): Promise => { }).then((response) => response.data); }; +const notEmpty = (value: TValue | null | undefined): value is TValue => { + return value !== null && value !== undefined; +}; + export { toArray, fromEntries, promiseSequentially, fetchAsSvgXml, + notEmpty, }; diff --git a/packages/output-components-as-es6/src/index.test.ts b/packages/output-components-as-es6/src/index.test.ts index 5132a79f..d615f909 100644 --- a/packages/output-components-as-es6/src/index.test.ts +++ b/packages/output-components-as-es6/src/index.test.ts @@ -5,7 +5,7 @@ import { expect } from 'chai'; import { camelCase } from '@figma-export/output-components-utils'; -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import * as figmaDocument from '../../core/src/lib/_config.test'; import * as figma from '../../core/src/lib/figma'; diff --git a/packages/output-components-as-es6/src/index.ts b/packages/output-components-as-es6/src/index.ts index d93e3c36..e0058ae8 100644 --- a/packages/output-components-as-es6/src/index.ts +++ b/packages/output-components-as-es6/src/index.ts @@ -1,7 +1,7 @@ import makeDir from 'make-dir'; import { camelCase } from '@figma-export/output-components-utils'; -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import fs = require('fs'); import path = require('path'); @@ -13,7 +13,7 @@ type Options = { output: string; useBase64?: boolean; useDataUrl?: boolean; - getVariableName?: (options: FigmaExport.OutputterParamOption) => string; + getVariableName?: (options: FigmaExport.ComponentOutputterParamOption) => string; } export = ({ @@ -21,7 +21,7 @@ export = ({ getVariableName = (options): string => camelCase(options.componentName.trim()), useBase64 = false, useDataUrl = false, -}: Options): FigmaExport.Outputter => { +}: Options): FigmaExport.ComponentOutputter => { makeDir.sync(output); return async (pages): Promise => { pages.forEach((page) => { @@ -46,15 +46,15 @@ export = ({ } switch (true) { - case useBase64: - variableValue = Buffer.from(svg).toString('base64'); - break; - case useDataUrl: - variableValue = svgToMiniDataURI(svg); - break; - default: - variableValue = svg; - break; + case useBase64: + variableValue = Buffer.from(svg).toString('base64'); + break; + case useDataUrl: + variableValue = svgToMiniDataURI(svg); + break; + default: + variableValue = svg; + break; } if (jsCode.includes(`export const ${variableName} =`)) { diff --git a/packages/output-components-as-stdout/src/index.ts b/packages/output-components-as-stdout/src/index.ts index 271d38b1..0994a322 100644 --- a/packages/output-components-as-stdout/src/index.ts +++ b/packages/output-components-as-stdout/src/index.ts @@ -1,8 +1,8 @@ /* eslint-disable no-console */ -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; -export = (): FigmaExport.Outputter => { +export = (): FigmaExport.ComponentOutputter => { return async (pages): Promise => { console.log(JSON.stringify(pages)); }; diff --git a/packages/output-components-as-svg/src/index.ts b/packages/output-components-as-svg/src/index.ts index 87196e81..a3c8fbfc 100644 --- a/packages/output-components-as-svg/src/index.ts +++ b/packages/output-components-as-svg/src/index.ts @@ -1,4 +1,4 @@ -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import fs = require('fs'); import path = require('path'); @@ -6,15 +6,15 @@ import makeDir = require('make-dir'); type Options = { output: string; - getDirname?: (options: FigmaExport.OutputterParamOption) => string; - getBasename?: (options: FigmaExport.OutputterParamOption) => string; + getDirname?: (options: FigmaExport.ComponentOutputterParamOption) => string; + getBasename?: (options: FigmaExport.ComponentOutputterParamOption) => string; } export = ({ output, getDirname = (options): string => `${options.pageName}${path.sep}${options.dirname}`, getBasename = (options): string => `${options.basename}.svg`, -}: Options): FigmaExport.Outputter => { +}: Options): FigmaExport.ComponentOutputter => { return async (pages): Promise => { pages.forEach(({ name: pageName, components }) => { components.forEach(({ name: componentName, svg, figmaExport }) => { diff --git a/packages/output-components-as-svgr/src/index.ts b/packages/output-components-as-svgr/src/index.ts index 0dfc2d51..8fa61936 100644 --- a/packages/output-components-as-svgr/src/index.ts +++ b/packages/output-components-as-svgr/src/index.ts @@ -1,4 +1,4 @@ -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import { pascalCase } from '@figma-export/output-components-utils'; import svgr from '@svgr/core'; import { Config, State } from './svgr'; @@ -9,15 +9,15 @@ import makeDir = require('make-dir'); type Options = { output: string; - getDirname?: (options: FigmaExport.OutputterParamOption) => string; - getComponentName?: (options: FigmaExport.OutputterParamOption) => string; - getFileExtension?: (options: FigmaExport.OutputterParamOption) => string; + getDirname?: (options: FigmaExport.ComponentOutputterParamOption) => string; + getComponentName?: (options: FigmaExport.ComponentOutputterParamOption) => string; + getFileExtension?: (options: FigmaExport.ComponentOutputterParamOption) => string; /** * SVGR ships with a handful of customizable options, usable in both the CLI and API. * https://react-svgr.com/docs/options/ */ - getSvgrConfig?: (options: FigmaExport.OutputterParamOption) => Config; + getSvgrConfig?: (options: FigmaExport.ComponentOutputterParamOption) => Config; } type IndexJs = { @@ -30,7 +30,7 @@ export = ({ getComponentName = (options): string => `${pascalCase(options.basename)}`, getFileExtension = (): string => '.jsx', getSvgrConfig = (): Config => ({ }), -}: Options): FigmaExport.Outputter => { +}: Options): FigmaExport.ComponentOutputter => { makeDir.sync(output); const indexJs: IndexJs = {}; return async (pages): Promise => { diff --git a/packages/output-components-as-svgstore/src/index.ts b/packages/output-components-as-svgstore/src/index.ts index 5ce8c730..6a7b5a96 100644 --- a/packages/output-components-as-svgstore/src/index.ts +++ b/packages/output-components-as-svgstore/src/index.ts @@ -3,7 +3,7 @@ import makeDir from 'make-dir'; import svgstore from 'svgstore'; -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; import { Options as SvgStoreOptions } from './svgstore'; @@ -14,14 +14,14 @@ type Options = { output: string; /** https://www.npmjs.com/package/svgstore#options */ svgstoreConfig?: SvgStoreOptions; - getIconId?: (options: FigmaExport.OutputterParamOption) => string; + getIconId?: (options: FigmaExport.ComponentOutputterParamOption) => string; } export = ({ output, getIconId = (options): string => `${options.pageName}/${options.componentName}`, svgstoreConfig = {}, -}: Options): FigmaExport.Outputter => { +}: Options): FigmaExport.ComponentOutputter => { makeDir.sync(output); return async (pages): Promise => { pages.forEach(({ name: pageName, components }) => { diff --git a/packages/transform-svg-with-svgo/src/index.ts b/packages/transform-svg-with-svgo/src/index.ts index 8c55cdae..5225c9d9 100644 --- a/packages/transform-svg-with-svgo/src/index.ts +++ b/packages/transform-svg-with-svgo/src/index.ts @@ -1,6 +1,6 @@ import SVGO from 'svgo'; -import { FigmaExport } from '@figma-export/types'; +import * as FigmaExport from '@figma-export/types'; export = (options: SVGO.Options): FigmaExport.StringTransformer => { const svgo = new SVGO(options); diff --git a/packages/types/src/global.ts b/packages/types/src/global.ts index 89101386..ddefa053 100644 --- a/packages/types/src/global.ts +++ b/packages/types/src/global.ts @@ -1,29 +1,25 @@ import * as Figma from 'figma-js'; -// eslint-disable-next-line @typescript-eslint/no-namespace -export namespace FigmaExport { - - export type ComponentExtras = { - dirname: string; - basename: string; - } - - export interface ComponentNode extends Figma.Component { - figmaExport: ComponentExtras; - svg: string; - } +export type ComponentExtras = { + dirname: string; + basename: string; +} +export interface ComponentNode extends Figma.Component { + figmaExport: ComponentExtras; + svg: string; +} - export interface PageNode extends Figma.Canvas { - components: ComponentNode[]; - } +export interface PageNode extends Figma.Canvas { + components: ComponentNode[]; +} - export type StringTransformer = (str: string) => Promise +export type StringTransformer = (str: string) => Promise - export type Outputter = (pages: PageNode[]) => Promise +export type ComponentOutputter = (pages: PageNode[]) => Promise - export type OutputterParamOption = { - componentName: string; - pageName: string; - } & ComponentExtras; +export type ComponentOutputterParamOption = { + componentName: string; + pageName: string; +} & ComponentExtras; -} +export type StyleNode = Figma.Style & Figma.Node diff --git a/packages/types/src/index.ts b/packages/types/src/index.ts index 7afcc369..30232e86 100644 --- a/packages/types/src/index.ts +++ b/packages/types/src/index.ts @@ -1 +1,2 @@ export * from './global'; +export * from './styles'; diff --git a/packages/types/src/styles/EffectStyle.ts b/packages/types/src/styles/EffectStyle.ts new file mode 100644 index 00000000..73ecc979 --- /dev/null +++ b/packages/types/src/styles/EffectStyle.ts @@ -0,0 +1,26 @@ +import * as Figma from 'figma-js'; +import { Color } from './PaintStyle'; + +export type EffectStyleShadow = { + type: 'DROP_SHADOW' | 'INNER_SHADOW' + color: Color + inset: boolean + offset: Figma.Vector2 + blurRadius: number + spreadRadius: number +} + +export type EffectStyleLayerBlur = { + type: 'LAYER_BLUR' + blurRadius: number +} + +export type EffectStyle = { + visible: boolean + value: string +} & (EffectStyleShadow | EffectStyleLayerBlur) + +export type StyleTypeEffect = { + styleType: 'EFFECT' + effects: EffectStyle[] +} diff --git a/packages/types/src/styles/GridStyle.ts b/packages/types/src/styles/GridStyle.ts new file mode 100644 index 00000000..59c3f5f3 --- /dev/null +++ b/packages/types/src/styles/GridStyle.ts @@ -0,0 +1,3 @@ +export type StyleTypeGrid = { + styleType: 'GRID' +} diff --git a/packages/types/src/styles/PaintStyle.ts b/packages/types/src/styles/PaintStyle.ts new file mode 100644 index 00000000..759e33a5 --- /dev/null +++ b/packages/types/src/styles/PaintStyle.ts @@ -0,0 +1,60 @@ +import * as Figma from 'figma-js'; + +/** Minimum necessary information for extracting a color */ +export type ExtractableColor = { + color?: Figma.Color + opacity?: number; +} + +/** An RGBA color */ +export type Color = { + /** Red channel value, between 0 and 255 */ + readonly r: number; + /** Green channel value, between 0 and 255 */ + readonly g: number; + /** Blue channel value, between 0 and 255 */ + readonly b: number; + /** Alpha channel value, between 0 and 1 */ + readonly a: number; + /** rgba() CSS Function as a string */ + rgba: string +} + +/** A color-stop's value, followed by a stop position */ +export type LinearColorStop = { + /** Color stop */ + color: Color, + /** Position is a along the gradient's axis */ + position: number +} + +/** + * The linear-gradient() CSS function creates an image consisting of a progressive transition between two or more colors along a straight line. + * Its result is an object of the data type, which is a special kind of . + * @url https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient + */ +export type LinearGradient = { + /** The gradient line's angle of direction. A value of 0deg is equivalent to to top; increasing values rotate clockwise from there */ + angle: string + /** A color-stop's value, followed by a stop position */ + gradientStops: LinearColorStop[] +} + +export type FillStyleSolid = { + type: 'SOLID' + color: Color +} + +export type FillStyleGradientLinear = { + type: 'GRADIENT_LINEAR' +} & LinearGradient + +export type FillStyle = { + visible: boolean + value: string +} & (FillStyleSolid | FillStyleGradientLinear); + +export type StyleTypeFill = { + styleType: 'FILL' + fills: FillStyle[] +} diff --git a/packages/types/src/styles/TextStyle.ts b/packages/types/src/styles/TextStyle.ts new file mode 100644 index 00000000..b0447d3b --- /dev/null +++ b/packages/types/src/styles/TextStyle.ts @@ -0,0 +1,37 @@ +export type TextTransform = 'none' | 'uppercase' | 'lowercase' | 'capitalize' +export type TextDecoration = 'none' | 'line-through' | 'underline' +export type FontVariant = 'normal' | 'small-caps' | 'all-small-caps' +export type FontStyle = 'normal' | 'italic' +export type TextAlign = 'left' | 'right' | 'center' | 'justify' +export type VerticalAlign = 'top' | 'middle' | 'bottom' + +export type TextStyle = { + /** Font family of text (standard name) */ + fontFamily: string; + /** Numeric font weight */ + fontWeight: 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900; + /** Font size in px */ + fontSize: number; + /** Line height in px */ + lineHeightPx: number; + /** Space between characters in px */ + letterSpacing: number; + + /** text-transform property, default is none */ + textTransform: TextTransform + /** font-variant property, default is none */ + fontVariant: FontVariant + /** text-decoration property, default is none */ + textDecoration: TextDecoration + /** font-style property, default is normal */ + fontStyle: FontStyle + /** text-align property */ + textAlign: TextAlign + /** text-align property */ + verticalAlign: VerticalAlign +} + +export type StyleTypeText = { + styleType: 'TEXT' + style: TextStyle +} diff --git a/packages/types/src/styles/index.ts b/packages/types/src/styles/index.ts new file mode 100644 index 00000000..63a3bb06 --- /dev/null +++ b/packages/types/src/styles/index.ts @@ -0,0 +1,25 @@ +import { StyleNode } from '../global'; + +import * as PaintStyle from './PaintStyle'; +import * as EffectStyle from './EffectStyle'; +import * as TextStyle from './TextStyle'; +import * as GridStyle from './GridStyle'; + +export * from './PaintStyle'; +export * from './EffectStyle'; +export * from './TextStyle'; +export * from './GridStyle'; + +export type Style = { + name: string + comment: string + visible: boolean + originalNode: StyleNode +} & ( + PaintStyle.StyleTypeFill + | EffectStyle.StyleTypeEffect + | TextStyle.StyleTypeText + | GridStyle.StyleTypeGrid +) + +export type StyleOutputter = (styles: Style[]) => Promise diff --git a/test--registers.ts b/test--registers.ts index 9f8083da..e951ac79 100644 --- a/test--registers.ts +++ b/test--registers.ts @@ -5,9 +5,11 @@ import sinon from 'sinon'; import chai from 'chai'; import sinonChai from 'sinon-chai'; import chaiThings from 'chai-things'; +import chaiAsPromises from 'chai-as-promised'; chai.use(sinonChai); chai.use(chaiThings); +chai.use(chaiAsPromises); let consoleSandbox: sinon.SinonSandbox; beforeEach(() => { diff --git a/yarn.lock b/yarn.lock index ebc87adc..5f20913e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1109,6 +1109,13 @@ resolved "https://registry.yarnpkg.com/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz#8da5c6530915653f3a1f38fd5f101d8c3f8079c5" integrity sha512-+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ== +"@types/chai-as-promised@^7.1.3": + version "7.1.3" + resolved "https://registry.yarnpkg.com/@types/chai-as-promised/-/chai-as-promised-7.1.3.tgz#779166b90fda611963a3adbfd00b339d03b747bd" + integrity sha512-FQnh1ohPXJELpKhzjuDkPLR2BZCAqed+a6xV4MI/T3XzHfd2FlarfUGUdZYgqYe8oxkYn0fchHEeHfHqdZ96sg== + dependencies: + "@types/chai" "*" + "@types/chai-things@0.0.34": version "0.0.34" resolved "https://registry.yarnpkg.com/@types/chai-things/-/chai-things-0.0.34.tgz#42c2be3c9670559b342d163473403da488ce27bc" @@ -1918,6 +1925,13 @@ caseless@~0.12.0: resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= +chai-as-promised@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/chai-as-promised/-/chai-as-promised-7.1.1.tgz#08645d825deb8696ee61725dbf590c012eb00ca0" + integrity sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA== + dependencies: + check-error "^1.0.2" + chai-things@~0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/chai-things/-/chai-things-0.2.0.tgz#c55128378f9bb399e994f00052151984ed6ebe70"