This is page 6 of 6. Use http://codebase.md/1yhy/figma-context-mcp?page={x} to view the full context.
# Directory Structure
```
├── .editorconfig
├── .env.example
├── .github
│ ├── ISSUE_TEMPLATE
│ │ ├── bug_report.yml
│ │ └── feature_request.yml
│ ├── PULL_REQUEST_TEMPLATE.md
│ └── workflows
│ └── ci.yml
├── .gitignore
├── .husky
│ ├── commit-msg
│ └── pre-commit
├── .lintstagedrc.json
├── .nvmrc
├── .prettierrc
├── CHANGELOG.md
├── commitlint.config.js
├── CONTRIBUTING.md
├── Dockerfile
├── docs
│ ├── en
│ │ ├── absolute-to-relative-research.md
│ │ ├── architecture.md
│ │ ├── cache-architecture.md
│ │ ├── grid-layout-research.md
│ │ ├── icon-detection.md
│ │ ├── layout-detection-research.md
│ │ └── layout-detection.md
│ └── zh-CN
│ ├── absolute-to-relative-research.md
│ ├── architecture.md
│ ├── cache-architecture.md
│ ├── grid-layout-research.md
│ ├── icon-detection.md
│ ├── layout-detection-research.md
│ ├── layout-detection.md
│ └── TODO-feature-enhancements.md
├── eslint.config.js
├── LICENSE
├── package.json
├── pnpm-lock.yaml
├── README.md
├── README.zh-CN.md
├── scripts
│ ├── fetch-test-data.ts
│ └── optimize-figma-json.ts
├── smithery.yaml
├── src
│ ├── algorithms
│ │ ├── icon
│ │ │ ├── detector.ts
│ │ │ └── index.ts
│ │ └── layout
│ │ ├── detector.ts
│ │ ├── index.ts
│ │ ├── optimizer.ts
│ │ └── spatial.ts
│ ├── config.ts
│ ├── core
│ │ ├── effects.ts
│ │ ├── layout.ts
│ │ ├── parser.ts
│ │ └── style.ts
│ ├── index.ts
│ ├── prompts
│ │ ├── design-to-code.ts
│ │ └── index.ts
│ ├── resources
│ │ ├── figma-resources.ts
│ │ └── index.ts
│ ├── server.ts
│ ├── services
│ │ ├── cache
│ │ │ ├── cache-manager.ts
│ │ │ ├── disk-cache.ts
│ │ │ ├── index.ts
│ │ │ ├── lru-cache.ts
│ │ │ └── types.ts
│ │ ├── cache.ts
│ │ ├── figma.ts
│ │ └── simplify-node-response.ts
│ ├── types
│ │ ├── figma.ts
│ │ ├── index.ts
│ │ └── simplified.ts
│ └── utils
│ ├── color.ts
│ ├── css.ts
│ ├── file.ts
│ └── validation.ts
├── tests
│ ├── fixtures
│ │ ├── expected
│ │ │ ├── node-240-32163-optimized.json
│ │ │ ├── node-402-34955-optimized.json
│ │ │ └── real-node-data-optimized.json
│ │ └── figma-data
│ │ ├── node-240-32163.json
│ │ ├── node-402-34955.json
│ │ └── real-node-data.json
│ ├── integration
│ │ ├── __snapshots__
│ │ │ ├── layout-optimization.test.ts.snap
│ │ │ └── output-quality.test.ts.snap
│ │ ├── layout-optimization.test.ts
│ │ ├── output-quality.test.ts
│ │ └── parser.test.ts
│ ├── unit
│ │ ├── algorithms
│ │ │ ├── icon-optimization.test.ts
│ │ │ ├── icon.test.ts
│ │ │ └── layout.test.ts
│ │ ├── resources
│ │ │ └── figma-resources.test.ts
│ │ └── services
│ │ └── cache.test.ts
│ └── utils
│ ├── preview-generator.ts
│ ├── preview.ts
│ ├── run-simplification.ts
│ └── viewer.html
├── tsconfig.json
├── tsup.config.ts
└── vitest.config.ts
```
# Files
--------------------------------------------------------------------------------
/tests/fixtures/figma-data/node-240-32163.json:
--------------------------------------------------------------------------------
```json
{
"name": "Untitled",
"lastModified": "2025-12-05T16:16:42Z",
"thumbnailUrl": "https://s3-alpha.figma.com/thumbnails/6d4c4440-1098-402c-b983-1bf44c182966?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAQ4GOSFWCXJW6HYPC%2F20251204%2Fus-west-2%2Fs3%2Faws4_request&X-Amz-Date=20251204T000000Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=d3f06b6fe775803929be1e1b720481975e85de86c48cc9eceead613e35ad8501",
"version": "2294103145619317358",
"role": "owner",
"editorType": "figma",
"linkAccess": "view",
"nodes": {
"240:32163": {
"document": {
"id": "240:32163",
"name": "Call Logs 有数据",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32164",
"name": "Group 125",
"type": "INSTANCE",
"scrollBehavior": "SCROLLS",
"componentId": "188:22469",
"overrides": [],
"children": [
{
"id": "I240:32164;10:397",
"name": "Rectangle 9",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33787,
"y": 77291,
"width": 375,
"height": 56
},
"absoluteRenderBounds": {
"x": 33787,
"y": 77291,
"width": 375,
"height": 56
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;1473:19604",
"name": "Link",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "I240:32164;1473:19605",
"name": "TRY NOW",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33939.58984375,
"y": 77311,
"width": 64,
"height": 16
},
"absoluteRenderBounds": {
"x": 33940.0390625,
"y": 77313.90625,
"width": 63.15625,
"height": 10.234375
},
"constraints": {
"vertical": "CENTER",
"horizontal": "CENTER"
},
"characters": "TRY NOW",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Roboto",
"fontPostScriptName": null,
"fontStyle": "Bold",
"fontWeight": 700,
"textCase": "UPPER",
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "CENTER",
"textAlignVertical": "CENTER",
"letterSpacing": 0.4000000059604645,
"lineHeightPx": 16,
"lineHeightPercent": 97.52381134033203,
"lineHeightPercentFontSize": 114.28571319580078,
"lineHeightUnit": "PIXELS"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "I240:32164;1473:19606",
"name": "Container",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [],
"fills": [],
"strokes": [],
"cornerRadius": 8,
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33907,
"y": 77301,
"width": 130,
"height": 36
},
"absoluteRenderBounds": {
"x": 33907,
"y": 77301,
"width": 130,
"height": 36
},
"constraints": {
"vertical": "TOP_BOTTOM",
"horizontal": "LEFT_RIGHT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.18039216101169586,
"g": 0.800000011920929,
"b": 0.4431372582912445,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.18039216101169586,
"g": 0.800000011920929,
"b": 0.4431372582912445,
"a": 1
}
}
],
"strokes": [],
"cornerRadius": 8,
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0.18039216101169586,
"g": 0.800000011920929,
"b": 0.4431372582912445,
"a": 1
},
"absoluteBoundingBox": {
"x": 33907,
"y": 77301,
"width": 130,
"height": 36
},
"absoluteRenderBounds": {
"x": 33907,
"y": 77301,
"width": 130,
"height": 36
},
"constraints": {
"vertical": "CENTER",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:398",
"name": "Vector 6",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.8850423097610474,
"g": 0.8850423097610474,
"b": 0.8850423097610474,
"a": 1
}
}
],
"strokeWeight": 1,
"strokeAlign": "CENTER",
"strokeCap": "ROUND",
"absoluteBoundingBox": {
"x": 33787,
"y": 77347,
"width": 375,
"height": 0
},
"absoluteRenderBounds": {
"x": 33787,
"y": 77346.5,
"width": 375,
"height": 1
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:399",
"name": "Group 1",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "I240:32164;10:400",
"name": "Rectangle 1",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 2,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33803,
"y": 77310,
"width": 18,
"height": 2.5
},
"absoluteRenderBounds": {
"x": 33803,
"y": 77310,
"width": 18,
"height": 2.5
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:401",
"name": "Rectangle 2",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 2,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33803,
"y": 77317,
"width": 18,
"height": 2.5
},
"absoluteRenderBounds": {
"x": 33803,
"y": 77317,
"width": 18,
"height": 2.5
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:402",
"name": "Rectangle 3",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 2,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33803,
"y": 77324,
"width": 18,
"height": 2.5
},
"absoluteRenderBounds": {
"x": 33803,
"y": 77324,
"width": 18,
"height": 2.5
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"cornerRadius": 2,
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33803,
"y": 77310,
"width": 18,
"height": 16.5
},
"absoluteRenderBounds": {
"x": 33803,
"y": 77310,
"width": 18,
"height": 16.5
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:403",
"name": "Group 9",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "I240:32164;10:404",
"name": "Vector 1",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"strokeJoin": "ROUND",
"strokeCap": "ROUND",
"absoluteBoundingBox": {
"x": 34077,
"y": 77316,
"width": 9,
"height": 4
},
"absoluteRenderBounds": {
"x": 34076.25,
"y": 77315.25,
"width": 10.5,
"height": 5.5
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:405",
"name": "EN",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34053,
"y": 77309,
"width": 19,
"height": 17
},
"absoluteRenderBounds": {
"x": 34054.171875,
"y": 77312.8203125,
"width": 16.65234375,
"height": 10.1796875
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"characters": "EN",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-Medium",
"fontStyle": "Medium",
"fontWeight": 500,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "CENTER",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 34053,
"y": 77309,
"width": 33,
"height": 17
},
"absoluteRenderBounds": {
"x": 34053,
"y": 77309,
"width": 33.75,
"height": 17
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:407",
"name": "Mask group",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "I240:32164;10:408",
"name": "Ellipse 33",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.8509804010391235,
"g": 0.8509804010391235,
"b": 0.8509804010391235,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 34100,
"y": 77300,
"width": 38,
"height": 38
},
"absoluteRenderBounds": null,
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"isMask": true,
"maskType": "ALPHA",
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "I240:32164;10:409",
"name": "image 10",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "48d28fe6b58b88ad4b20ffa2c33b9e492d0e1455"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 34093.29296875,
"y": 77300,
"width": 50.48038864135742,
"height": 37.860294342041016
},
"absoluteRenderBounds": {
"x": 34100,
"y": 77300,
"width": 38,
"height": 37.859375
},
"preserveRatio": true,
"targetAspectRatio": {
"x": 644,
"y": 483
},
"constraints": {
"vertical": "TOP",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 34100,
"y": 77300,
"width": 38,
"height": 38
},
"absoluteRenderBounds": {
"x": 34100,
"y": 77300,
"width": 38,
"height": 38
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
},
{
"id": "I240:32164;10:410",
"name": "Ellipse 34",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.15069255232810974,
"g": 0.9519113302230835,
"b": 0.40441179275512695,
"a": 1
}
}
],
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34129,
"y": 77330,
"width": 8,
"height": 8
},
"absoluteRenderBounds": {
"x": 34128,
"y": 77329,
"width": 10,
"height": 10
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33787,
"y": 77291,
"width": 375,
"height": 56
},
"absoluteRenderBounds": {
"x": 33787,
"y": 77291,
"width": 375,
"height": 56.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32165",
"name": "Call Logs",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0,
"b": 0,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33804,
"y": 77367,
"width": 100,
"height": 28
},
"absoluteRenderBounds": {
"x": 33805.0078125,
"y": 77371,
"width": 97.91015625,
"height": 22.9921875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Call Logs",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Roboto",
"fontPostScriptName": "Roboto-Bold",
"fontStyle": "Bold",
"fontWeight": 700,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 24,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 28.125,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32166",
"name": "Rectangle 34625814",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.8141040802001953,
"strokeAlign": "INSIDE",
"cornerRadius": 12,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33803,
"y": 77411,
"width": 343,
"height": 673
},
"absoluteRenderBounds": {
"x": 33803,
"y": 77411,
"width": 343,
"height": 673
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"exportSettings": [
{
"suffix": "",
"format": "PNG",
"constraint": {
"type": "SCALE",
"value": 1
}
}
],
"effects": [],
"interactions": []
},
{
"id": "240:32167",
"name": "Rectangle 34625853",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.800000011920929,
"g": 0.800000011920929,
"b": 0.800000011920929,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 3,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 34134,
"y": 77421,
"width": 6,
"height": 201
},
"absoluteRenderBounds": {
"x": 34134,
"y": 77421,
"width": 6,
"height": 201
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32168",
"name": "Group 1410086443",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32169",
"name": "That would be flne. Shall we make lt...",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77513,
"width": 214,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.578125,
"y": 77515.8671875,
"width": 212.21875,
"height": 9.2890625
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "That would be flne. Shall we make lt...",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32170",
"name": "Group 1410086330",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32171",
"name": "Rectangle 24",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77421,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77421,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32172",
"name": "Today",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34081,
"y": 77434,
"width": 35,
"height": 15
},
"absoluteRenderBounds": {
"x": 34082.0078125,
"y": 77437.2734375,
"width": 33.5859375,
"height": 11.1796875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Today",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32173",
"name": "Outgoing",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"boundVariables": {
"fills": [
{
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
]
},
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
},
"boundVariables": {
"color": {
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34046,
"y": 77455,
"width": 53,
"height": 15
},
"absoluteRenderBounds": {
"x": 34047.66015625,
"y": 77458,
"width": 50.41796875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Outgoing",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32174",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 77459,
"width": 8,
"height": 8
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77458.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32175",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "2f834425bec9aae49c3bdb34557d27a444cddaca"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77431,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77431,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32176",
"name": "Harry",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77434,
"width": 38,
"height": 17
},
"absoluteRenderBounds": {
"x": 33874.00390625,
"y": 77437.8203125,
"width": 36.53125,
"height": 13.046875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Harry",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32177",
"name": "outgoing",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77455,
"width": 51,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.61328125,
"y": 77458,
"width": 48.5390625,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "outgoing",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32178",
"name": "Group 1410086532",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32179",
"name": "Ellipse 40",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
}
}
],
"strokes": [
{
"opacity": 0.5699999928474426,
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33845,
"y": 77455,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77455,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32180",
"name": "Frame",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32181",
"name": "Vector",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.1953125,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33847.984375,
"y": 77459.3203125,
"width": 12.033830642700195,
"height": 9.3515625
},
"absoluteRenderBounds": {
"x": 33847.984375,
"y": 77459.3203125,
"width": 12.03515625,
"height": 9.3515625
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33847,
"y": 77457,
"width": 14,
"height": 14
},
"absoluteRenderBounds": {
"x": 33847,
"y": 77457,
"width": 14,
"height": 14
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33845,
"y": 77455,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77455,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77421,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77421,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32182",
"name": "Group 1410086328",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32183",
"name": "Rectangle 26",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77557,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77557,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32184",
"name": "Yesterday",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34059,
"y": 77570,
"width": 57,
"height": 15
},
"absoluteRenderBounds": {
"x": 34059.80078125,
"y": 77573.2734375,
"width": 55.79296875,
"height": 11.1796875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Yesterday",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32185",
"name": "Outgoing",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"boundVariables": {
"fills": [
{
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
]
},
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
},
"boundVariables": {
"color": {
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34046,
"y": 77591,
"width": 53,
"height": 15
},
"absoluteRenderBounds": {
"x": 34047.66015625,
"y": 77594,
"width": 50.41796875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Outgoing",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32186",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 77595,
"width": 8,
"height": 8
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77594.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32187",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77591,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 77594.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32188",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "c93f71a01a5a26cbb3c38533a22d8dd9a054e454"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77567,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77567,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32189",
"name": "Teresa school",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77570,
"width": 95,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.55859375,
"y": 77573.8203125,
"width": 92.71484375,
"height": 10.3359375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Teresa school",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32190",
"name": "Group 1410086532",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32191",
"name": "Ellipse 40",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
}
}
],
"strokes": [
{
"opacity": 0.5699999928474426,
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33845,
"y": 77591,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77591,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32192",
"name": "Frame",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32193",
"name": "Vector",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.1953125,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33847.984375,
"y": 77595.3203125,
"width": 12.033830642700195,
"height": 9.3515625
},
"absoluteRenderBounds": {
"x": 33847.984375,
"y": 77595.3203125,
"width": 12.03515625,
"height": 9.3515625
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33847,
"y": 77593,
"width": 14,
"height": 14
},
"absoluteRenderBounds": {
"x": 33847,
"y": 77593,
"width": 14,
"height": 14
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33845,
"y": 77591,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77591,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77557,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77557,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32194",
"name": "Group 1410086340",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32195",
"name": "Rectangle 26",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77897,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77897,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32196",
"name": "May 23, 2025",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34038,
"y": 77910,
"width": 78,
"height": 15
},
"absoluteRenderBounds": {
"x": 34039.09375,
"y": 77913.15625,
"width": 76.1171875,
"height": 11.296875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "May 23, 2025",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32197",
"name": "Missed",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 0.12606576085090637,
"b": 0.12606576085090637,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34058,
"y": 77931,
"width": 41,
"height": 15
},
"absoluteRenderBounds": {
"x": 34059.55859375,
"y": 77934,
"width": 38.37890625,
"height": 9.1328125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Missed",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32198",
"name": "Group 1410086347",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32199",
"name": "Vector 10",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"rotation": -3.1415925661670165,
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"6": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 0.12606576085090637,
"b": 0.12606576085090637,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"strokeCap": "ROUND",
"absoluteBoundingBox": {
"x": 34106,
"y": 77934.99999930062,
"width": 8.000000699379598,
"height": 8.000000699379598
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77934.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32200",
"name": "Vector 11",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"rotation": -1.5707963705062884,
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"6": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 0.12606576085090637,
"b": 0.12606576085090637,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"strokeCap": "ROUND",
"absoluteBoundingBox": {
"x": 34105.99999965031,
"y": 77934.9999996503,
"width": 8.000000349689799,
"height": 8.000000349697075
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77934.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 34106,
"y": 77935,
"width": 8.000000953674316,
"height": 8.000000953674316
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77934.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32201",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "c93f71a01a5a26cbb3c38533a22d8dd9a054e454"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77907,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77907,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32202",
"name": "Teresa school",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77910,
"width": 95,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.55859375,
"y": 77913.8203125,
"width": 92.71484375,
"height": 10.3359375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Teresa school",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32203",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77931,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 77934.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77897,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77897,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32204",
"name": "Group 1410086326",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32205",
"name": "Rectangle 28",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77693,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77693,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32206",
"name": "Yesterday",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34059,
"y": 77706,
"width": 57,
"height": 15
},
"absoluteRenderBounds": {
"x": 34059.80078125,
"y": 77709.2734375,
"width": 55.79296875,
"height": 11.1796875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Yesterday",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32207",
"name": "Incoming",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34047,
"y": 77727,
"width": 52,
"height": 15
},
"absoluteRenderBounds": {
"x": 34048.390625,
"y": 77730,
"width": 49.6875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Incoming",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32208",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"rotation": -3.1415925661670165,
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 77730.99999930062,
"width": 8.000000699379598,
"height": 8.000000699379598
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77730.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32209",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "292429fba1cd5141bba22503b57b165c8fed8630"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77703,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77703,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32210",
"name": "Charlie",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77706,
"width": 49,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.74609375,
"y": 77709.328125,
"width": 46.8359375,
"height": 10.828125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Charlie",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32211",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77727,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 77730.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32212",
"name": "Group 1410086532",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32213",
"name": "Ellipse 40",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
}
}
],
"strokes": [
{
"opacity": 0.5699999928474426,
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33845,
"y": 77727,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77727,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32214",
"name": "Frame",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32215",
"name": "Vector",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.1953125,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33847.984375,
"y": 77731.3203125,
"width": 12.033830642700195,
"height": 9.3515625
},
"absoluteRenderBounds": {
"x": 33847.984375,
"y": 77731.3203125,
"width": 12.03515625,
"height": 9.3515625
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33847,
"y": 77729,
"width": 14,
"height": 14
},
"absoluteRenderBounds": {
"x": 33847,
"y": 77729,
"width": 14,
"height": 14
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33845,
"y": 77727,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77727,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77693,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77693,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32216",
"name": "Group 1410086325",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32217",
"name": "Rectangle 61",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77761,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77761,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32218",
"name": "Friday",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34081,
"y": 77774,
"width": 35,
"height": 15
},
"absoluteRenderBounds": {
"x": 34082.11328125,
"y": 77777,
"width": 33.48046875,
"height": 11.453125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Friday",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32219",
"name": "Outgoing",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"boundVariables": {
"fills": [
{
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
]
},
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
},
"boundVariables": {
"color": {
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34046,
"y": 77795,
"width": 53,
"height": 15
},
"absoluteRenderBounds": {
"x": 34047.66015625,
"y": 77798,
"width": 50.41796875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Outgoing",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32220",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 77799,
"width": 8,
"height": 8
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77798.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32221",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77795,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 77798.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32222",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "0b9c5db0ffc24fc06fce788bd03637d8f7976f8b"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77771,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77771,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32223",
"name": "Charlie",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77774,
"width": 49,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.74609375,
"y": 77777.328125,
"width": 46.8359375,
"height": 10.828125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Charlie",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77761,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77761,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32224",
"name": "Group 1410086329",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32225",
"name": "Rectangle 25",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77489,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77489,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32226",
"name": "Yesterday",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34059,
"y": 77502,
"width": 57,
"height": 15
},
"absoluteRenderBounds": {
"x": 34059.80078125,
"y": 77505.2734375,
"width": 55.79296875,
"height": 11.1796875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Yesterday",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32227",
"name": "Outgoing",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"boundVariables": {
"fills": [
{
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
]
},
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
},
"boundVariables": {
"color": {
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34046,
"y": 77523,
"width": 53,
"height": 15
},
"absoluteRenderBounds": {
"x": 34047.66015625,
"y": 77526,
"width": 50.41796875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Outgoing",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32228",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 77527,
"width": 8,
"height": 8
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77526.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32229",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77523,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 77526.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32230",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "a81e312be24b3cb3829228752425b584a421e753"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77499,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77499,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32231",
"name": "Chris Monet",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77502,
"width": 83,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.74609375,
"y": 77505.328125,
"width": 81.515625,
"height": 10.8203125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Chris Monet",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32232",
"name": "Group 1410086532",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32233",
"name": "Ellipse 40",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
}
}
],
"strokes": [
{
"opacity": 0.5699999928474426,
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33845,
"y": 77523,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77523,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32234",
"name": "Frame",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32235",
"name": "Vector",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.1953125,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33847.984375,
"y": 77527.3203125,
"width": 12.033830642700195,
"height": 9.3515625
},
"absoluteRenderBounds": {
"x": 33847.984375,
"y": 77527.3203125,
"width": 12.03515625,
"height": 9.3515625
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33847,
"y": 77525,
"width": 14,
"height": 14
},
"absoluteRenderBounds": {
"x": 33847,
"y": 77525,
"width": 14,
"height": 14
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33845,
"y": 77523,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77523,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77489,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77489,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32236",
"name": "Group 1410086343",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32237",
"name": "Rectangle 25",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77829,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77829,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32238",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "a81e312be24b3cb3829228752425b584a421e753"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77839,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77839,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32239",
"name": "Chris Monet",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77842,
"width": 83,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.74609375,
"y": 77845.328125,
"width": 81.515625,
"height": 10.8203125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Chris Monet",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32240",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77863,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 77866.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32241",
"name": "Friday",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34081,
"y": 77842,
"width": 35,
"height": 15
},
"absoluteRenderBounds": {
"x": 34082.11328125,
"y": 77845,
"width": 33.48046875,
"height": 11.453125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Friday",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32242",
"name": "Incoming",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34047,
"y": 77863,
"width": 52,
"height": 15
},
"absoluteRenderBounds": {
"x": 34048.390625,
"y": 77866,
"width": 49.6875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Incoming",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32243",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"rotation": -3.1415925661670165,
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 77866.99999930062,
"width": 8.000000699379598,
"height": 8.000000699379598
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77866.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77829,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77829,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32244",
"name": "Group 1410086327",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32245",
"name": "Rectangle 27",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77625,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77625,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32246",
"name": "Yesterday",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34059,
"y": 77638,
"width": 57,
"height": 15
},
"absoluteRenderBounds": {
"x": 34059.80078125,
"y": 77641.2734375,
"width": 55.79296875,
"height": 11.1796875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Yesterday",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32247",
"name": "Incoming",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34047,
"y": 77659,
"width": 52,
"height": 15
},
"absoluteRenderBounds": {
"x": 34048.390625,
"y": 77662,
"width": 49.6875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Incoming",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32248",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"rotation": -3.1415925661670165,
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 77662.99999930062,
"width": 8.000000699379598,
"height": 8.000000699379598
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 77662.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32249",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77659,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 77662.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32250",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "6c466f1c57cb7d632c39fdaacb57224889e445df"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77635,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77635,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32251",
"name": "Jackie",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77638,
"width": 44,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.40625,
"y": 77641.328125,
"width": 42.8828125,
"height": 10.828125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Jackie",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32252",
"name": "Group 1410086532",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32253",
"name": "Ellipse 40",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
}
}
],
"strokes": [
{
"opacity": 0.5699999928474426,
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33845,
"y": 77659,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77659,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32254",
"name": "Frame",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32255",
"name": "Vector",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.1953125,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33847.984375,
"y": 77663.3203125,
"width": 12.033830642700195,
"height": 9.3515625
},
"absoluteRenderBounds": {
"x": 33847.984375,
"y": 77663.3203125,
"width": 12.03515625,
"height": 9.3515625
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33847,
"y": 77661,
"width": 14,
"height": 14
},
"absoluteRenderBounds": {
"x": 33847,
"y": 77661,
"width": 14,
"height": 14
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33845,
"y": 77659,
"width": 18,
"height": 18
},
"absoluteRenderBounds": {
"x": 33845,
"y": 77659,
"width": 18,
"height": 18
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77625,
"width": 317,
"height": 62
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77625,
"width": 317,
"height": 62
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32256",
"name": "Group 1410086344",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32257",
"name": "Rectangle 27",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 77965,
"width": 317,
"height": 55
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77965,
"width": 317,
"height": 55
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32258",
"name": "May 23, 2025",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34038,
"y": 77978,
"width": 78,
"height": 15
},
"absoluteRenderBounds": {
"x": 34039.09375,
"y": 77981.15625,
"width": 76.1171875,
"height": 11.296875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "May 23, 2025",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32259",
"name": "Outgoing",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"boundVariables": {
"fills": [
{
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
]
},
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
},
"boundVariables": {
"color": {
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34046,
"y": 77999,
"width": 53,
"height": 15
},
"absoluteRenderBounds": {
"x": 34047.66015625,
"y": 78002,
"width": 50.41796875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Outgoing",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32260",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 78003,
"width": 8,
"height": 8
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 78002.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32261",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "6c466f1c57cb7d632c39fdaacb57224889e445df"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 77975,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 77975,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32262",
"name": "Jackie",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77978,
"width": 44,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.40625,
"y": 77981.328125,
"width": 42.8828125,
"height": 10.828125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Jackie",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32263",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 77999,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 78002.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77965,
"width": 317,
"height": 55
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77965,
"width": 317,
"height": 55
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32264",
"name": "Group 1410086345",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32265",
"name": "Rectangle 27",
"type": "RECTANGLE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.95686274766922,
"g": 0.9529411792755127,
"b": 0.9647058844566345,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"cornerRadius": 10,
"cornerSmoothing": 0,
"absoluteBoundingBox": {
"x": 33811,
"y": 78026,
"width": 317,
"height": 55
},
"absoluteRenderBounds": {
"x": 33811,
"y": 78026,
"width": 317,
"height": 55
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32266",
"name": "May 23, 2025",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.6000000238418579,
"g": 0.6000000238418579,
"b": 0.6000000238418579,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34038,
"y": 78039,
"width": 78,
"height": 15
},
"absoluteRenderBounds": {
"x": 34039.09375,
"y": 78042.15625,
"width": 76.1171875,
"height": 11.296875
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "May 23, 2025",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32267",
"name": "Outgoing",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"boundVariables": {
"fills": [
{
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
]
},
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0,
"g": 0.5882353186607361,
"b": 0.38823530077934265,
"a": 1
},
"boundVariables": {
"color": {
"type": "VARIABLE_ALIAS",
"id": "VariableID:a69cadfe5cc640bce9ad01002fcfdb7597cb0788/70:3"
}
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 34046,
"y": 78060,
"width": 53,
"height": 15
},
"absoluteRenderBounds": {
"x": 34047.66015625,
"y": 78063,
"width": 50.41796875,
"height": 11.59375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Outgoing",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "RIGHT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32268",
"name": "Vector 8",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [],
"fillOverrideTable": {
"1": null,
"2": null
},
"strokes": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.1411764770746231,
"g": 0.7803921699523926,
"b": 0.5647059082984924,
"a": 1
}
}
],
"strokeWeight": 1.5,
"strokeAlign": "CENTER",
"absoluteBoundingBox": {
"x": 34106,
"y": 78064,
"width": 8,
"height": 8
},
"absoluteRenderBounds": {
"x": 34105.25,
"y": 78063.25,
"width": 9.5,
"height": 9.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32269",
"name": "image",
"type": "ELLIPSE",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "IMAGE",
"scaleMode": "FILL",
"imageRef": "6c466f1c57cb7d632c39fdaacb57224889e445df"
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 33821,
"y": 78036,
"width": 42,
"height": 42
},
"absoluteRenderBounds": {
"x": 33821,
"y": 78036,
"width": 42,
"height": 42
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"arcData": {
"startingAngle": 0,
"endingAngle": 6.2831854820251465,
"innerRadius": 0
},
"interactions": []
},
{
"id": "240:32270",
"name": "Jackie",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.20000000298023224,
"g": 0.20000000298023224,
"b": 0.20000000298023224,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 78039,
"width": 44,
"height": 17
},
"absoluteRenderBounds": {
"x": 33873.40625,
"y": 78042.328125,
"width": 42.8828125,
"height": 10.828125
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Jackie",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": "Inter-SemiBold",
"fontStyle": "Semi Bold",
"fontWeight": 600,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 14,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 16.94318199157715,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32271",
"name": "677-377-9558",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33873,
"y": 78060,
"width": 84,
"height": 15
},
"absoluteRenderBounds": {
"x": 33873.765625,
"y": 78063.140625,
"width": 81.90625,
"height": 8.984375
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "677-377-9558",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Inter",
"fontPostScriptName": null,
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "CENTER",
"letterSpacing": 0,
"lineHeightPx": 14.522727012634277,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 78026,
"width": 317,
"height": 55
},
"absoluteRenderBounds": {
"x": 33811,
"y": 78026,
"width": 317,
"height": 55
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"rectangleCornerRadii": [0, 0, 0, 0],
"cornerSmoothing": 0,
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33811,
"y": 77421,
"width": 317,
"height": 660
},
"absoluteRenderBounds": {
"x": 33811,
"y": 77421,
"width": 317,
"height": 660
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32272",
"name": "Group 1410086516",
"type": "GROUP",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32273",
"name": "Enable call recording",
"type": "TEXT",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "OUTSIDE",
"absoluteBoundingBox": {
"x": 33974,
"y": 77374,
"width": 112,
"height": 14
},
"absoluteRenderBounds": {
"x": 33974.9921875,
"y": 77376,
"width": 109.234375,
"height": 11.5
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"characters": "Enable call recording",
"characterStyleOverrides": [],
"styleOverrideTable": {},
"lineTypes": ["NONE"],
"lineIndentations": [0],
"style": {
"fontFamily": "Roboto",
"fontPostScriptName": "Roboto-Regular",
"fontStyle": "Regular",
"fontWeight": 400,
"textAutoResize": "WIDTH_AND_HEIGHT",
"fontSize": 12,
"textAlignHorizontal": "LEFT",
"textAlignVertical": "TOP",
"letterSpacing": 0,
"lineHeightPx": 14.0625,
"lineHeightPercent": 100,
"lineHeightUnit": "INTRINSIC_%"
},
"layoutVersion": 4,
"effects": [],
"interactions": []
},
{
"id": "240:32274",
"name": "Frame",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32275",
"name": "Vector",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.4000000059604645,
"g": 0.4000000059604645,
"b": 0.4000000059604645,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.1953125,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 34092.42578125,
"y": 77375.421875,
"width": 13.145999908447266,
"height": 13.145999908447266
},
"absoluteRenderBounds": {
"x": 34092.42578125,
"y": 77375.421875,
"width": 13.14453125,
"height": 13.1484375
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 34092,
"y": 77375,
"width": 14,
"height": 14
},
"absoluteRenderBounds": {
"x": 34092,
"y": 77375,
"width": 14,
"height": 14
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
{
"id": "240:32276",
"name": "Frame",
"type": "FRAME",
"scrollBehavior": "SCROLLS",
"children": [
{
"id": "240:32277",
"name": "Vector",
"type": "VECTOR",
"scrollBehavior": "SCROLLS",
"blendMode": "PASS_THROUGH",
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.7333333492279053,
"g": 0.7333333492279053,
"b": 0.7333333492279053,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 0.1953125,
"strokeAlign": "INSIDE",
"absoluteBoundingBox": {
"x": 34112.0703125,
"y": 77371.7890625,
"width": 33.856929779052734,
"height": 20.43496322631836
},
"absoluteRenderBounds": {
"x": 34112.0703125,
"y": 77371.7890625,
"width": 33.85546875,
"height": 20.4375
},
"constraints": {
"vertical": "SCALE",
"horizontal": "SCALE"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"visible": false,
"type": "SOLID",
"color": {
"r": 1,
"g": 1,
"b": 1,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 34112,
"y": 77365,
"width": 34,
"height": 34
},
"absoluteRenderBounds": {
"x": 34112,
"y": 77365,
"width": 34,
"height": 34
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": false,
"background": [],
"fills": [],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0,
"g": 0,
"b": 0,
"a": 0
},
"absoluteBoundingBox": {
"x": 33974,
"y": 77365,
"width": 172,
"height": 34
},
"absoluteRenderBounds": {
"x": 33974,
"y": 77365,
"width": 172,
"height": 34
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
}
],
"blendMode": "PASS_THROUGH",
"clipsContent": true,
"background": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.9584635496139526,
"g": 0.9584635496139526,
"b": 0.9584635496139526,
"a": 1
}
}
],
"fills": [
{
"blendMode": "NORMAL",
"type": "SOLID",
"color": {
"r": 0.9584635496139526,
"g": 0.9584635496139526,
"b": 0.9584635496139526,
"a": 1
}
}
],
"strokes": [],
"strokeWeight": 1,
"strokeAlign": "INSIDE",
"backgroundColor": {
"r": 0.9584635496139526,
"g": 0.9584635496139526,
"b": 0.9584635496139526,
"a": 1
},
"absoluteBoundingBox": {
"x": 33787,
"y": 77291,
"width": 375,
"height": 827
},
"absoluteRenderBounds": {
"x": 33787,
"y": 77291,
"width": 375,
"height": 827
},
"constraints": {
"vertical": "TOP",
"horizontal": "LEFT"
},
"effects": [],
"interactions": []
},
"components": {
"188:22469": {
"key": "fa0b432f48b0fc08ecc6ba706f8c902314286c7c",
"name": "Group 125",
"description": "",
"remote": true,
"documentationLinks": []
}
},
"componentSets": {},
"schemaVersion": 0,
"styles": {}
}
}
}
```