Full Code of benjamindenboer/FramerInput for AI

master b56f7d213ef4 cached
13 files
4.1 MB
1.1M tokens
639 symbols
1 requests
Download .txt
Showing preview only (4,292K chars total). Download the full file or copy to clipboard to get everything.
Repository: benjamindenboer/FramerInput
Branch: master
Commit: b56f7d213ef4
Files: 13
Total size: 4.1 MB

Directory structure:
gitextract_aocbfhix/

├── .gitignore
├── Makefile
├── README.md
├── keyboard/
│   └── Keyboard.framer/
│       ├── app.coffee
│       ├── framer/
│       │   ├── config.json
│       │   ├── design.vekter
│       │   ├── framer.js
│       │   ├── framer.js.map
│       │   ├── framer.vekter.js
│       │   └── version
│       └── modules/
│           └── input.coffee
├── scripts/
│   └── rm-unused-images.sh
└── src/
    └── input.coffee

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
*/*.framer/.gitignore
*/*.framer/.*.html
*/*.framer/images/.gitkeep
*/*.framer/images/design/*-*
*/*.framer/index.html
*/*.framer/.viewer.html

!*/*.framer/framer
*/*.framer/framer/*
# Exclude everything except these three files
!*/*.framer/framer/config.json
!*/*.framer/framer/design.vekter
!*/*.framer/framer/framer.vekter.js
!*/*.framer/framer/framer.js
!*/*.framer/framer/framer.js.map
!*/*.framer/framer/version


================================================
FILE: Makefile
================================================
.PHONY: help clean

default: help

clean:
	git clean -Xdf
	scripts/rm-unused-images.sh

help:
	@echo "Run \`make clean\` to remove all cruft from .framer folders (before packaging)"



================================================
FILE: README.md
================================================
<h1 align="center">
  <img src="https://d.pr/i/n8cWkV+" width="160" alt="icon"><br>
  Framer Input<br>
  <br>
</h1>
<br>
<p align="center">  
  <img src="https://d.pr/i/kmymUv+" width="800" alt="banner">
  <br>
  <h6 align="center">INTRODUCTION</h6>
  <p align="center">From inputs in <a href="https://framer.com/features/design?utm_source=github&utm_medium=link&utm_campaign=framer_audio_benjamin">Design</a> to fully functional ones in <a href="https://framer.com/features/code?utm_source=github&utm_medium=link&utm_campaign=framer_audio_benjamin">Code</a>. A <strong>Framer</strong> module that allows you to create single-line and multi-line input fields in Code and Design. Complete with an interactive iOS keyboard simulator.</p>
 <p align="center"><a href="https://youtu.be/GZepOvNX7OM">Watch the video.</a></p>
</p>
<br>

## Overview
All included properties and methods.


| Properties    | Type          | Description |
| ------------- | ------------- |----------- |
| new InputLayer    | Class  | Initiate a new Input object. |
| InputLayer.wrap    | Method  |Wrap input object around two layers. |
| InputLayer.value    | String  |  Text value of input layer. |
| InputLayer.focusColor    | Color  | Color of input layer on focus. |
| InputLayer.multiLine    | Boolean  | Single or multi-line input field. |
| InputLayer.onEnterKey    | Event  | On return key press. |
| InputLayer.onSpaceKey    | Event  | On space key press. |
| InputLayer.onBackSpaceKey    | Event | On backspace key press. |
| InputLayer.onCapsLockKey    | Event | On caps space key press. |
| InputLayer.onShiftKey    | Event  |  On shift key press. |
| InputLayer.onValueChange    | Event  | On input key press. |
| InputLayer.onInputFocus    | Event  | On input focus. |
| InputLayer.onInputBlur    | Event  | On input blur. |


<br>

## Design Guide
First, grab the `input.coffee` file and place it within the `/modules` folder (located within your `.framer` folder).
Then, to include the module, `require` the `Input` class:

```javascript
{InputLayer} = require "input"
```

Once you have created a simple input field in Design, you can make the wrapper layer (`background`) and the placeholder copy (`text`) targetable, and wrap them in Code.

The `InputLayer.wrap` method takes two parameters:
- `background` — The background layer of the input field.
- `text` — The placeholder text layer of the input field.

```javascript
input = InputLayer.wrap(background, text)
```

Now, the input field is functional. It automatically sets a `focusColor` for you (changes the color of the text), but this is completely customizable. The `input` object has its own `onValueChange` method. To use the text contents as you’re typing, simply reference the `value` property in combination with the event.

```javascript
input.onValueChange ->
	print input.value 
```

The `wrap` method allows you to pass in optional properties, too. For instance, if you’d like to create a `multiLine` input field (also known as a `textarea`), you can simply pass it along:

```javascript
input = InputLayer.wrap(bg, text, multiLine: true)
```


## Code Guide
New `InputLayers` can be initiated in Code, too.

```javascript
input = new InputLayer
```

This will create a functional input field, with its default placeholder. Note that the `InputLayer` class is based on the `TextLayer` class, and thus will inherit its properties and methods as well.

```javascript
input = new InputLayer
	text: "Placeholder"
```

To style the placeholder text, you can use all of the [TextLayer](https://framer.com/docs/?utm_campaign=framer_input_benjamin#text.textlayer) properties.

```javascript
input.fontSize = 40
input.fontWeight = 600
input.color = "red"
```

The `Input` class has its own `onValueChange` method, too. To use the text contents as you’re typing, simply reference the `value` property in combination with the event.

```javascript
input.onValueChange ->
	print input.value 
```



---

## Examples
- **[Input in Code](https://framer.cloud/NyGvN/)**. Create and style a single input field.
- **[Textarea in Code](https://framer.cloud/HSNYG/)**. Create and style a multi-line input field.
- **[Input in Design](https://framer.cloud/kyABW/)**. Wrap a single input field.
- **[Textarea in Design](https://framer.cloud/EyGbp/)**. Wrap a multi-line input field.
- **[Chat Example](https://framer.cloud/JdeKv/).** Type and send messages.


## More Resources
- [MDN Keyboard Event Reference](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent).
- [MDN Key Property Reference](https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key).
- [HTML DOM Events Reference](https://www.w3schools.com/jsref/dom_obj_event.asp).
---

## Contact
- Follow me <a href="https://twitter.com/benjaminnathan">@benjaminnathan</a>.
- Follow <a href="https://twitter.com/framer">@framer</a>.


================================================
FILE: keyboard/Keyboard.framer/app.coffee
================================================
# Require input module
{InputLayer} = require "input"

# Wrap input layer
input = InputLayer.wrap(bg, text)

# Keyboard Simulator
# Variables
lettersActive = true 
numbersActive = false
showLeftKey = false 
showRightKey = false
showLargeKey = false

# Methods 		
## Show active key
showActiveKey = (key, showLeftKey, showRightKey) ->

	offsetX = 2 
	offsetY = 3
	
	currentActiveKey = activeKey
	currentActiveLetter = activeLetter
	
	if showLeftKey
		currentActiveKey = activeKeyLeft
		currentActiveLetter = activeLetterLeft
		offsetX = -19
		
	else if showRightKey
		currentActiveKey = activeKeyRight
		currentActiveLetter = activeLetterRight
		offsetX = 11
		
	else if showLargeKey
		currentActiveKey = activeKeyLarge
		currentActiveLetter = activeLetterLarge
		offsetX = -8
		
	currentActiveKey.opacity = 1
	currentActiveKey.point = 
		x: key.x - (key.width / 2) - 5 - offsetX
		y: key.y - currentActiveKey.height + key.height + offsetY
		
	if lettersActive
		currentActiveKey.parent = keyboard
		currentActiveLetter.text = key.name
	
	if numbersActive
		currentActiveKey.parent = numeric 
		currentActiveLetter.text = key.name
		currentActiveLetter.x = Align.center
	
	if shiftIconActive.visible
		currentActiveLetter.textTransform = "uppercase"			
	else
		currentActiveLetter.textTransform = "lowercase"
				
	
## Map all keys
mapLetterKeys = (e) ->	
	for key in letters.children
		name = String.fromCharCode(e.which) 
		
		if key.name is name
		
			if name is "q"
				showLeftKey = true
				showRightKey = false
			if name is "p"
				showLeftKey = false 
				showRightKey = true 
			
			showActiveKey(key, showLeftKey, showRightKey, showLargeKey)			

mapNumberKeys = (e) ->	
	for key in numbers.children
		name = String.fromCharCode(e.which) 
		
		if key.name is name
					
			if name is "1" or name is "-"
				showLeftKey = true
				showRightKey = false
				showLargeKey = false
			if name is "0" or name is "“"
				showLeftKey = false
				showRightKey = true
				showLargeKey = false
			if name is "."
				showLeftKey = false
				showRightKey = false 
				showLargeKey = true 
		
			showActiveKey(key, showLeftKey, showRightKey, showLargeKey)		
								
## Uppercase & Lowercase
setUppercase = ->
	for key in letters.children
		key.children[0].textTransform = "uppercase"
		key.children[0].x = Align.center()
		key.children[0].y = Align.center(1)
		shiftIconActive.visible = true
		shiftIcon.visible = false
		
setLowercase = ->
	for key in letters.children
		key.children[0].textTransform = "lowercase"
		key.children[0].x = Align.center()
		key.children[0].y = Align.center(-1)
		shiftIconActive.visible = false
		shiftIcon.visible = true
		
checkValue = ->
	if input.value == ""
		setUppercase()
	else
		setLowercase()
		
# Tap interactions for letters
for key in letters.children
		
	key.onTapStart ->
		return if numbersActive
		
		showLeftKey = false 
		showRightKey = false
		showLargeKey = false
		
		if @name is "q"
			showLeftKey = true 
			showRightKey = false
			showLargeKey = false
		if @name is "p"
			showLeftKey = false 
			showRightKey = true
			showLargeKey = false
				
		showActiveKey(this, showLeftKey, showRightKey, showLargeKey)
					
	key.onTapEnd ->
		return if numbersActive
				
		currentActiveKey = activeKey
		currentActiveLetter = activeLetter
		
		if showLeftKey
			currentActiveKey = activeKeyLeft
			currentActiveLetter = activeLetterLeft
			
		else if showRightKey
			currentActiveKey = activeKeyRight
			currentActiveLetter = activeLetterRight
			
		currentActiveKey.opacity = 0
		input._inputElement.focus()
		
		if shiftIconActive.visible
			input.value += currentActiveLetter.text.toUpperCase()		
		else
			input.value += currentActiveLetter.text
			
		checkValue()
		input.emit(Events. ValueChange, input.value)
	
# Tap interactions for numbers
for key in numbers.children
		
	key.onTapStart ->
		return if lettersActive
		
		showLeftKey = false 
		showRightKey = false
		showLargeKey = false
		
		if @name is "1" or @name is "-"
			showLeftKey = true 
			showRightKey = false
			showLargeKey = false
		if @name is "0" or @name is "“"
			showLeftKey = false 
			showRightKey = true 
			showLargeKey = false
		if @name is "." or @name is "," or @name is "?" or @name is "!" or @name is "‘"
			showLeftKey = false 
			showRightKey = false 
			showLargeKey = true
				
		showActiveKey(this, showLeftKey, showRightKey, showLargeKey)
					
	key.onTapEnd ->
		return if lettersActive
		
		currentActiveKey = activeKey
		currentActiveLetter = activeLetter
		
		if showLeftKey
			currentActiveKey = activeKeyLeft
			currentActiveLetter = activeLetterLeft
			
		else if showRightKey
			currentActiveKey = activeKeyRight
			currentActiveLetter = activeLetterRight
		
		else if showLargeKey
			currentActiveKey = activeKeyLarge
			currentActiveLetter = activeLetterLarge
			
		currentActiveKey.opacity = 0
		input._inputElement.focus()
			
		input.value += currentActiveLetter.text
		input.emit(Events.InputValueChange, input.value)	
		
# Keyboard methods	
document.onkeydown = (e) ->
	
	# Shift down
	if e.which == 16
		if shiftIconActive.visible
			return 
		else
			setUppercase()	
								
document.onkeypress = (e) ->
	
	if lettersActive
		mapLetterKeys(e)
		
	if numbersActive
		mapNumberKeys(e)
		
	# Space down
	if e.which == 32
		space.backgroundColor = "#ACB4BC"
	
					
document.onkeyup = (e) ->
	
	currentActiveKey = activeKey
	
	if showLeftKey
		currentActiveKey = activeKeyLeft
		
	else if showRightKey
		currentActiveKey = activeKeyRight
		
	currentActiveKey.opacity = 0
	
	# Space up
	if e.which == 32
		space.backgroundColor = "#FFFFFF"
	
	# Shift up 
	if e.which == 16
		setLowercase()
	
	checkValue()
		
# Extras
# Space
space.onTap -> input.value += " "	
space.onTapStart -> @backgroundColor = "#ACB4BC"	
space.onTapEnd -> @backgroundColor = "#FFFFFF"
input.onSpaceKey -> space.backgroundColor = "#ACB4BC"

# Return
returnKey.onTapStart -> @backgroundColor = "#FFFFFF"	
returnKey.onTapEnd -> @backgroundColor = "#ACB4BC"
returnKey.onTap ->
	if input.multiLine
		input.value += "\n"
			
# Shift			
shift.onTap ->
	if shiftIconActive.visible
		setLowercase()					
	else
		setUppercase()
		
# Caps lock
input.onCapsLockKey ->
	if shiftIconActive.visible
		setLowercase()
	else 
		setUppercase()

# Backspace
backspace.onTapStart ->
	backSpaceIcon.visible = false
	backSpaceIconActive.visible = true
	input.value = input.value.slice(0, -1)
	
backspace.onTapEnd ->
	backSpaceIcon.visible = true
	backSpaceIconActive.visible = false
	
# Numbers
numbersKey.onTap (event) ->
	lettersActive = false 
	numbersActive = true

	numeric.x = 0
	numeric.y = Screen.height - numeric.height
	numeric.parent = screenA
	
lettersKey.onTap (event) ->
	lettersActive = true 
	numbersActive = false

	numeric.x = Screen.width
	
# Hide on mobile
unless Utils.isDesktop()
	keyboard.opacity = 0
	numeric.opacity = 0


================================================
FILE: keyboard/Keyboard.framer/framer/config.json
================================================
{
  "orientation" : 0,
  "updateDelay" : 0.29999999999999999,
  "designModeSelected" : 0,
  "cachedDeviceHeight" : 667,
  "contentScale" : 1,
  "fullScreen" : false,
  "cachedDeviceWidth" : 375,
  "deviceType" : "apple-iphone-8-silver",
  "sharedPrototype" : 0,
  "propertyPanelToggleStates" : {

  },
  "projectId" : "5BD29A99-8B8D-46A7-AB0B-E55C0BCF7DFC",
  "deviceOrientation" : 0,
  "selectedHand" : "iphone-hands-1",
  "showBezel" : false,
  "foldedCodeRanges" : [
    "{109, 6736}"
  ],
  "deviceScale" : "fit"
}

================================================
FILE: keyboard/Keyboard.framer/framer/design.vekter
================================================
{
  "root" : {
    "__class" : "CanvasNode",
    "children" : [
      {
        "__class" : "FrameNode",
        "children" : [
          {
            "__class" : "ImageNode",
            "aspectRatioLocked" : true,
            "blendingEnabled" : 0,
            "blendingMode" : "normal",
            "blur" : 12,
            "blurEnabled" : 0,
            "blurType" : "layer",
            "borderBottom" : 1,
            "borderColor" : "#222",
            "borderEnabled" : 0,
            "borderLeft" : 1,
            "borderPerSide" : false,
            "borderRight" : 1,
            "borderStyle" : "solid",
            "borderTop" : 1,
            "borderWidth" : 1,
            "bottom" : null,
            "boxShadows" : [

            ],
            "brightness" : 100,
            "brightnessEnabled" : 0,
            "centerAnchorX" : 0.5013333333333333,
            "centerAnchorY" : 0.39205397301349326,
            "children" : [
              {
                "__class" : "TextNode",
                "autoSize" : true,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "bottom" : null,
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.50641025641025639,
                "centerAnchorY" : 0.27826086956521739,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "editable" : false,
                "exportOptions" : [

                ],
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 48,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "PG!w||F1",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : null,
                "locked" : false,
                "name" : "activeLetter",
                "opacity" : 1,
                "parentid" : "9F:f(7'Z",
                "right" : null,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "shadows" : [

                ],
                "styledText" : {
                  "__class" : "StyledTextDraft",
                  "blocks" : [
                    {
                      "data" : {
                        "emptyStyle" : [
                          "LETTERSPACING:0",
                          "LINEHEIGHT:1.2",
                          "SIZE:40",
                          "FONT:SFUIText-Light",
                          "COLOR:hsl(0, 0%, 0%)",
                          "ALIGN:center"
                        ]
                      },
                      "depth" : 0,
                      "entityRanges" : [

                      ],
                      "inlineStyleRanges" : [
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LETTERSPACING:0"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LINEHEIGHT:1.2"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "SIZE:40"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "FONT:SFUIText-Light"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "COLOR:hsl(0, 0%, 0%)"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "ALIGN:center"
                        }
                      ],
                      "key" : "8qs5e",
                      "text" : "a",
                      "type" : "unstyled"
                    }
                  ],
                  "entityMap" : {

                  }
                },
                "targetName" : "activeLetter",
                "top" : 8,
                "visible" : true,
                "width" : 23,
                "widthFactor" : null,
                "x" : 37,
                "y" : 26
              }
            ],
            "clip" : false,
            "constraintsLocked" : false,
            "contrast" : 100,
            "contrastEnabled" : 0,
            "exportOptions" : [

            ],
            "fillColor" : "transparent",
            "fillEnabled" : false,
            "grayscale" : 0,
            "grayScaleEnabled" : 0,
            "height" : 115,
            "heightFactor" : null,
            "hueRotate" : 0,
            "hueRotateEnabled" : 0,
            "id" : "9F:f(7'Z",
            "image" : "vnTgHM2fx0xGIVr4XmcsWbEmcunv5ylj3dKMjOIlwFjFKVSg1o02LpbInZTErLdq5Kmwew4Bdf6db7C2fKGw.png",
            "imageBackgroundSize" : "Cover",
            "intrinsicHeight" : 230,
            "intrinsicWidth" : 156,
            "invert" : 0,
            "invertEnabled" : 0,
            "left" : null,
            "locked" : false,
            "name" : "activeKey",
            "opacity" : 1,
            "originalFilename" : "",
            "parentid" : "ypp+c]hk",
            "radius" : 0,
            "radiusBottomLeft" : 0,
            "radiusBottomRight" : 0,
            "radiusPerCorner" : false,
            "radiusTopLeft" : 0,
            "radiusTopRight" : 0,
            "right" : null,
            "rotation" : 0,
            "saturate" : 100,
            "saturateEnabled" : 0,
            "sepia" : 0,
            "sepiaEnabled" : 0,
            "targetName" : "activeKey",
            "top" : 204,
            "visible" : true,
            "width" : 78,
            "widthFactor" : null
          },
          {
            "__class" : "ImageNode",
            "aspectRatioLocked" : true,
            "blendingEnabled" : 0,
            "blendingMode" : "normal",
            "blur" : 12,
            "blurEnabled" : 0,
            "blurType" : "layer",
            "borderBottom" : 1,
            "borderColor" : "#222",
            "borderEnabled" : 0,
            "borderLeft" : 1,
            "borderPerSide" : false,
            "borderRight" : 1,
            "borderStyle" : "solid",
            "borderTop" : 1,
            "borderWidth" : 1,
            "bottom" : null,
            "boxShadows" : [

            ],
            "brightness" : 100,
            "brightnessEnabled" : 0,
            "centerAnchorX" : 0.25600000000000001,
            "centerAnchorY" : 0.48275862068965519,
            "children" : [
              {
                "__class" : "TextNode",
                "autoSize" : true,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "bottom" : null,
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.4621212121212121,
                "centerAnchorY" : 0.26785714285714285,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "editable" : false,
                "exportOptions" : [

                ],
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 48,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "qCqw]5uJ",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : 19,
                "locked" : false,
                "name" : "activeLetterLeft",
                "opacity" : 1,
                "parentid" : ")1Y10y+W",
                "right" : null,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "shadows" : [

                ],
                "styledText" : {
                  "__class" : "StyledTextDraft",
                  "blocks" : [
                    {
                      "data" : {
                        "emptyStyle" : [
                          "LETTERSPACING:0",
                          "LINEHEIGHT:1.2",
                          "SIZE:40",
                          "FONT:SFUIText-Light",
                          "COLOR:hsl(0, 0%, 0%)",
                          "ALIGN:center"
                        ]
                      },
                      "depth" : 0,
                      "entityRanges" : [

                      ],
                      "inlineStyleRanges" : [
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LETTERSPACING:0"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LINEHEIGHT:1.2"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "SIZE:40"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "FONT:SFUIText-Light"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "COLOR:hsl(0, 0%, 0%)"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "ALIGN:center"
                        }
                      ],
                      "key" : "8qs5e",
                      "text" : "a",
                      "type" : "unstyled"
                    }
                  ],
                  "entityMap" : {

                  }
                },
                "targetName" : "activeLetterLeft",
                "top" : 6,
                "visible" : true,
                "width" : 23,
                "widthFactor" : null,
                "x" : 37,
                "y" : 26
              }
            ],
            "clip" : false,
            "constraintsLocked" : false,
            "contrast" : 100,
            "contrastEnabled" : 0,
            "exportOptions" : [

            ],
            "fillColor" : "transparent",
            "fillEnabled" : false,
            "grayscale" : 0,
            "grayScaleEnabled" : 0,
            "height" : 112,
            "heightFactor" : null,
            "hueRotate" : 0,
            "hueRotateEnabled" : 0,
            "id" : ")1Y10y+W",
            "image" : "RNdRQBH7ru0UBdruDbrkRmBuGFd9XUb6wJgINvoIuVJiqXcXnNekcSrhSgIGFa8OUU8O3HLUpQvqFta33vSw.png",
            "imageBackgroundSize" : "Cover",
            "intrinsicHeight" : 225,
            "intrinsicWidth" : 133,
            "invert" : 0,
            "invertEnabled" : 0,
            "left" : 63,
            "locked" : false,
            "name" : "activeKeyLeft",
            "opacity" : 1,
            "originalFilename" : "",
            "parentid" : "ypp+c]hk",
            "radius" : 0,
            "radiusBottomLeft" : 0,
            "radiusBottomRight" : 0,
            "radiusPerCorner" : false,
            "radiusTopLeft" : 0,
            "radiusTopRight" : 0,
            "right" : null,
            "rotation" : 0,
            "saturate" : 100,
            "saturateEnabled" : 0,
            "sepia" : 0,
            "sepiaEnabled" : 0,
            "targetName" : "activeKeyLeft",
            "top" : 266,
            "visible" : true,
            "width" : 66,
            "widthFactor" : null
          },
          {
            "__class" : "ImageNode",
            "aspectRatioLocked" : true,
            "blendingEnabled" : 0,
            "blendingMode" : "normal",
            "blur" : 12,
            "blurEnabled" : 0,
            "blurType" : "layer",
            "borderBottom" : 1,
            "borderColor" : "#222",
            "borderEnabled" : 0,
            "borderLeft" : 1,
            "borderPerSide" : false,
            "borderRight" : 1,
            "borderStyle" : "solid",
            "borderTop" : 1,
            "borderWidth" : 1,
            "bottom" : null,
            "boxShadows" : [

            ],
            "brightness" : 100,
            "brightnessEnabled" : 0,
            "centerAnchorX" : 0.7466666666666667,
            "centerAnchorY" : 0.48275862068965519,
            "children" : [
              {
                "__class" : "TextNode",
                "autoSize" : true,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "bottom" : null,
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.55303030303030298,
                "centerAnchorY" : 0.2857142857142857,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "editable" : false,
                "exportOptions" : [

                ],
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 48,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "ysxQX%`r",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : null,
                "locked" : false,
                "name" : "activeLetterRight",
                "opacity" : 1,
                "parentid" : "HPuF%ul)",
                "right" : 18,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "shadows" : [

                ],
                "styledText" : {
                  "__class" : "StyledTextDraft",
                  "blocks" : [
                    {
                      "data" : {
                        "emptyStyle" : [
                          "LETTERSPACING:0",
                          "LINEHEIGHT:1.2",
                          "SIZE:40",
                          "FONT:SFUIText-Light",
                          "COLOR:hsl(0, 0%, 0%)",
                          "ALIGN:center"
                        ]
                      },
                      "depth" : 0,
                      "entityRanges" : [

                      ],
                      "inlineStyleRanges" : [
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LETTERSPACING:0"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LINEHEIGHT:1.2"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "SIZE:40"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "FONT:SFUIText-Light"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "COLOR:hsl(0, 0%, 0%)"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "ALIGN:center"
                        }
                      ],
                      "key" : "8qs5e",
                      "text" : "a",
                      "type" : "unstyled"
                    }
                  ],
                  "entityMap" : {

                  }
                },
                "targetName" : "activeLetterRight",
                "top" : 8,
                "visible" : true,
                "width" : 23,
                "widthFactor" : null,
                "x" : 37,
                "y" : 26
              }
            ],
            "clip" : false,
            "constraintsLocked" : false,
            "contrast" : 100,
            "contrastEnabled" : 0,
            "exportOptions" : [

            ],
            "fillColor" : "transparent",
            "fillEnabled" : false,
            "grayscale" : 0,
            "grayScaleEnabled" : 0,
            "height" : 112,
            "heightFactor" : null,
            "hueRotate" : 0,
            "hueRotateEnabled" : 0,
            "id" : "HPuF%ul)",
            "image" : "OveuLHgU9Jr3JFnuL7HC2Mw2wlByRf4dvip2PiMxay4s48LbqJa80Vra3Fski0BtgRpXwOM88AlNAkhYrw.png",
            "imageBackgroundSize" : "Cover",
            "intrinsicHeight" : 225,
            "intrinsicWidth" : 133,
            "invert" : 0,
            "invertEnabled" : 0,
            "left" : null,
            "locked" : false,
            "name" : "activeKeyRight",
            "opacity" : 1,
            "originalFilename" : "",
            "parentid" : "ypp+c]hk",
            "radius" : 0,
            "radiusBottomLeft" : 0,
            "radiusBottomRight" : 0,
            "radiusPerCorner" : false,
            "radiusTopLeft" : 0,
            "radiusTopRight" : 0,
            "right" : 62,
            "rotation" : 0,
            "saturate" : 100,
            "saturateEnabled" : 0,
            "sepia" : 0,
            "sepiaEnabled" : 0,
            "targetName" : "activeKeyRight",
            "top" : 266,
            "visible" : true,
            "width" : 66,
            "widthFactor" : null
          },
          {
            "__class" : "ImageNode",
            "aspectRatioLocked" : true,
            "blendingEnabled" : 0,
            "blendingMode" : "normal",
            "blur" : 12,
            "blurEnabled" : 0,
            "blurType" : "layer",
            "borderBottom" : 1,
            "borderColor" : "#222",
            "borderEnabled" : 0,
            "borderLeft" : 1,
            "borderPerSide" : false,
            "borderRight" : 1,
            "borderStyle" : "solid",
            "borderTop" : 1,
            "borderWidth" : 1,
            "bottom" : 204,
            "boxShadows" : [

            ],
            "brightness" : 100,
            "brightnessEnabled" : 0,
            "centerAnchorX" : 0.5013333333333333,
            "centerAnchorY" : 0.60869565217391308,
            "children" : [
              {
                "__class" : "TextNode",
                "autoSize" : true,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "bottom" : null,
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.50555555555555554,
                "centerAnchorY" : 0.30701754385964913,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "editable" : false,
                "exportOptions" : [

                ],
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 48,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "O,d]\/6|g",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : null,
                "locked" : false,
                "name" : "activeLetterLarge",
                "opacity" : 1,
                "parentid" : "9~OLowHe",
                "right" : null,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "shadows" : [

                ],
                "styledText" : {
                  "__class" : "StyledTextDraft",
                  "blocks" : [
                    {
                      "data" : {
                        "emptyStyle" : [
                          "LETTERSPACING:0",
                          "LINEHEIGHT:1.2",
                          "SIZE:40",
                          "FONT:SFUIText-Light",
                          "COLOR:hsl(0, 0%, 0%)",
                          "ALIGN:center"
                        ]
                      },
                      "depth" : 0,
                      "entityRanges" : [

                      ],
                      "inlineStyleRanges" : [
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LETTERSPACING:0"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "LINEHEIGHT:1.2"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "SIZE:40"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "FONT:SFUIText-Light"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "COLOR:hsl(0, 0%, 0%)"
                        },
                        {
                          "length" : 1,
                          "offset" : 0,
                          "style" : "ALIGN:center"
                        }
                      ],
                      "key" : "8qs5e",
                      "text" : "?",
                      "type" : "unstyled"
                    }
                  ],
                  "entityMap" : {

                  }
                },
                "targetName" : "activeLetterLarge",
                "top" : 11,
                "visible" : true,
                "width" : 21,
                "widthFactor" : null,
                "x" : 37,
                "y" : 26
              }
            ],
            "clip" : false,
            "constraintsLocked" : false,
            "contrast" : 100,
            "contrastEnabled" : 0,
            "exportOptions" : [

            ],
            "fillColor" : "transparent",
            "fillEnabled" : false,
            "grayscale" : 0,
            "grayScaleEnabled" : 0,
            "height" : 114,
            "heightFactor" : null,
            "hueRotate" : 0,
            "hueRotateEnabled" : 0,
            "id" : "9~OLowHe",
            "image" : "Ahg575xJHHEHIosnvDwECjoXuOb1GBlxIkZVgsgHNJmD3SYd1QPwLIregEJEyvzuWxh8DN4Dr7KLvjzvw.png",
            "imageBackgroundSize" : "Cover",
            "intrinsicHeight" : 227,
            "intrinsicWidth" : 180,
            "invert" : 0,
            "invertEnabled" : 0,
            "left" : null,
            "locked" : false,
            "name" : "activeKeyLarge",
            "opacity" : 1,
            "originalFilename" : "",
            "parentid" : "ypp+c]hk",
            "radius" : 0,
            "radiusBottomLeft" : 0,
            "radiusBottomRight" : 0,
            "radiusPerCorner" : false,
            "radiusTopLeft" : 0,
            "radiusTopRight" : 0,
            "right" : null,
            "rotation" : 0,
            "saturate" : 100,
            "saturateEnabled" : 0,
            "sepia" : 0,
            "sepiaEnabled" : 0,
            "targetName" : "activeKeyLarge",
            "top" : null,
            "visible" : true,
            "width" : 90,
            "widthFactor" : null
          }
        ],
        "deviceType" : "apple-iphone-8-space-gray",
        "exportIncludesBackground" : true,
        "exportOptions" : [

        ],
        "fillColor" : "#ffffff",
        "fillGradient" : {
          "__class" : "LinearGradient",
          "alpha" : 1,
          "angle" : 0,
          "end" : "rgba(0,0,0,0)",
          "start" : "black"
        },
        "fillType" : "color",
        "height" : 667,
        "id" : "ypp+c]hk",
        "name" : "Resource",
        "parentid" : "99;ztG(r",
        "targetName" : null,
        "width" : 375,
        "x" : 950,
        "y" : 0
      },
      {
        "__class" : "FrameNode",
        "children" : [
          {
            "__class" : "RectangleNode",
            "aspectRatioLocked" : false,
            "blendingEnabled" : 0,
            "blendingMode" : "normal",
            "blur" : 12,
            "blurEnabled" : 0,
            "blurType" : "layer",
            "borderBottom" : 1,
            "borderColor" : "#222",
            "borderEnabled" : 0,
            "borderLeft" : 1,
            "borderPerSide" : false,
            "borderRight" : 1,
            "borderStyle" : "solid",
            "borderTop" : 1,
            "borderWidth" : 1,
            "bottom" : null,
            "boxShadows" : [
              {
                "__class" : "BoxShadow",
                "blur" : 0,
                "color" : "hsla(0, 0%, 0%, 0.04)",
                "enabled" : true,
                "inset" : false,
                "spread" : 0,
                "x" : 0,
                "y" : 1
              },
              {
                "__class" : "BoxShadow",
                "blur" : 4,
                "color" : "hsla(0, 0%, 0%, 0.04)",
                "enabled" : true,
                "inset" : false,
                "spread" : 0,
                "x" : 0,
                "y" : 2
              }
            ],
            "brightness" : 100,
            "brightnessEnabled" : 0,
            "centerAnchorX" : 0.5,
            "centerAnchorY" : 0.050224887556221891,
            "children" : [
              {
                "__class" : "RectangleNode",
                "aspectRatioLocked" : false,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "borderBottom" : 1,
                "borderColor" : "#222",
                "borderEnabled" : 0,
                "borderLeft" : 1,
                "borderPerSide" : false,
                "borderRight" : 1,
                "borderStyle" : "solid",
                "borderTop" : 1,
                "borderWidth" : 1,
                "bottom" : null,
                "boxShadows" : [

                ],
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.5,
                "centerAnchorY" : 0.1567164179104478,
                "children" : [
                  {
                    "__class" : "TextNode",
                    "autoSize" : true,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "bottom" : null,
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.5,
                    "centerAnchorY" : 0.5,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "editable" : false,
                    "exportEnabled" : false,
                    "exportOptions" : [

                    ],
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 15,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "{Wlk)u<>",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "time",
                    "opacity" : 1,
                    "parentid" : "QE8ZL=#V",
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "shadows" : [

                    ],
                    "styledText" : {
                      "__class" : "StyledTextDraft",
                      "blocks" : [
                        {
                          "data" : {
                            "emptyStyle" : [
                              "FONT:__SF-UI-Text-Medium__",
                              "LETTERSPACING:0",
                              "LINEHEIGHT:1.3",
                              "SIZE:12",
                              "ALIGN:center",
                              "COLOR:rgba(0, 0, 0, 1.00)"
                            ]
                          },
                          "depth" : 0,
                          "entityRanges" : [

                          ],
                          "inlineStyleRanges" : [
                            {
                              "length" : 4,
                              "offset" : 0,
                              "style" : "FONT:__SF-UI-Text-Medium__"
                            },
                            {
                              "length" : 4,
                              "offset" : 0,
                              "style" : "LETTERSPACING:0"
                            },
                            {
                              "length" : 4,
                              "offset" : 0,
                              "style" : "LINEHEIGHT:1.3"
                            },
                            {
                              "length" : 4,
                              "offset" : 0,
                              "style" : "SIZE:12"
                            },
                            {
                              "length" : 4,
                              "offset" : 0,
                              "style" : "ALIGN:center"
                            },
                            {
                              "length" : 4,
                              "offset" : 0,
                              "style" : "COLOR:rgba(0, 0, 0, 1.00)"
                            }
                          ],
                          "key" : "1kq1t",
                          "text" : "9:00",
                          "type" : "unstyled"
                        }
                      ],
                      "entityMap" : {

                      }
                    },
                    "targetName" : "time",
                    "top" : null,
                    "visible" : true,
                    "width" : 29,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "hsla(0, 0%, 0%, 0.25)",
                    "borderEnabled" : 1,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [

                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.94399999999999995,
                    "centerAnchorY" : 0.5,
                    "children" : [
                      {
                        "__class" : "RectangleNode",
                        "aspectRatioLocked" : false,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "borderBottom" : 1,
                        "borderColor" : "#222",
                        "borderEnabled" : 0,
                        "borderLeft" : 1,
                        "borderPerSide" : false,
                        "borderRight" : 1,
                        "borderStyle" : "solid",
                        "borderTop" : 1,
                        "borderWidth" : 1,
                        "bottom" : 2,
                        "boxShadows" : [

                        ],
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.43181818181818182,
                        "centerAnchorY" : 0.5,
                        "children" : [

                        ],
                        "clip" : false,
                        "constraintsLocked" : false,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "exportOptions" : [

                        ],
                        "fillColor" : "rgba(0, 0, 0, 1.00)",
                        "fillEnabled" : true,
                        "fillGradient" : {
                          "__class" : "LinearGradient",
                          "alpha" : 1,
                          "angle" : 0,
                          "end" : "rgba(0,0,0,0)",
                          "start" : "black"
                        },
                        "fillType" : "color",
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 7,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : ",6)$W5x,",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : 2,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "XN)v,(zi",
                        "radius" : 1,
                        "radiusBottomLeft" : 1,
                        "radiusBottomRight" : 1,
                        "radiusPerCorner" : false,
                        "radiusTopLeft" : 1,
                        "radiusTopRight" : 1,
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "targetName" : null,
                        "top" : 2,
                        "visible" : true,
                        "width" : 15,
                        "widthFactor" : null
                      },
                      {
                        "__class" : "RectangleNode",
                        "aspectRatioLocked" : false,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "borderBottom" : 1,
                        "borderColor" : "#222",
                        "borderEnabled" : 0,
                        "borderLeft" : 1,
                        "borderPerSide" : false,
                        "borderRight" : 1,
                        "borderStyle" : "solid",
                        "borderTop" : 1,
                        "borderWidth" : 1,
                        "bottom" : null,
                        "boxShadows" : [

                        ],
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 1.0909090909090908,
                        "centerAnchorY" : 0.5,
                        "children" : [

                        ],
                        "clip" : false,
                        "constraintsLocked" : false,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "exportEnabled" : false,
                        "exportOptions" : [

                        ],
                        "fillColor" : "rgba(0, 0, 0, 1.00)",
                        "fillEnabled" : true,
                        "fillGradient" : {
                          "__class" : "LinearGradient",
                          "alpha" : 1,
                          "angle" : 0,
                          "end" : "rgba(0,0,0,0)",
                          "start" : "black"
                        },
                        "fillType" : "color",
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 3,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "rpD=\/DB%",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 0.25,
                        "parentid" : "XN)v,(zi",
                        "radius" : 0,
                        "radiusBottomLeft" : 0,
                        "radiusBottomRight" : 10,
                        "radiusPerCorner" : true,
                        "radiusTopLeft" : 0,
                        "radiusTopRight" : 10,
                        "right" : -3,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 2,
                        "widthFactor" : null
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportEnabled" : false,
                    "exportOptions" : [

                    ],
                    "fillColor" : "hsl(0, 0%, 0%)",
                    "fillEnabled" : false,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 11,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "XN)v,(zi",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "Battery",
                    "opacity" : 1,
                    "parentid" : "QE8ZL=#V",
                    "radius" : 3,
                    "radiusBottomLeft" : 3,
                    "radiusBottomRight" : 3,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 3,
                    "radiusTopRight" : 3,
                    "right" : 10,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : null,
                    "top" : null,
                    "visible" : true,
                    "width" : 22,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "SVGNode",
                    "aspectRatioLocked" : true,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "bottom" : 3,
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.089333333333333334,
                    "centerAnchorY" : 0.5,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportEnabled" : false,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(0, 0, 0, 1.00)",
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 15,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "'nDX9(Ur",
                    "intrinsicHeight" : 24,
                    "intrinsicWidth" : 24,
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 26,
                    "locked" : false,
                    "name" : "Wifi",
                    "opacity" : 1,
                    "originalFilename" : "wifi",
                    "parentid" : "QE8ZL=#V",
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "shadows" : [

                    ],
                    "svg" : "<?xml version=\"1.0\"?><svg xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3a4.237 4.237 0 0 0-6 0zm-4-4l2 2a7.074 7.074 0 0 1 10 0l2-2C15.14 9.14 8.87 9.14 5 13z\"><\/path><\/svg>",
                    "targetName" : null,
                    "top" : 3,
                    "visible" : true,
                    "width" : 15,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 5,
                    "boxShadows" : [

                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.02,
                    "centerAnchorY" : 0.66666666666666663,
                    "children" : [

                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportEnabled" : false,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(0, 0, 0, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 4,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "k%+;VQTJ",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 6,
                    "locked" : false,
                    "name" : null,
                    "opacity" : 1,
                    "parentid" : "QE8ZL=#V",
                    "radius" : 1,
                    "radiusBottomLeft" : 1,
                    "radiusBottomRight" : 1,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 1,
                    "radiusTopRight" : 1,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : null,
                    "top" : null,
                    "visible" : true,
                    "width" : 3,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 5,
                    "boxShadows" : [

                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.030666666666666662,
                    "centerAnchorY" : 0.61904761904761907,
                    "children" : [

                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportEnabled" : false,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(0, 0, 0, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 6,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "UHGr+;ut",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 10,
                    "locked" : false,
                    "name" : null,
                    "opacity" : 1,
                    "parentid" : "QE8ZL=#V",
                    "radius" : 1,
                    "radiusBottomLeft" : 1,
                    "radiusBottomRight" : 1,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 1,
                    "radiusTopRight" : 1,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : null,
                    "top" : null,
                    "visible" : true,
                    "width" : 3,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [

                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.041333333333333333,
                    "centerAnchorY" : 0.5714285714285714,
                    "children" : [

                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportEnabled" : false,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(0, 0, 0, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 8,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "u30T7]iH",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 14,
                    "locked" : false,
                    "name" : null,
                    "opacity" : 0.20000000000000001,
                    "parentid" : "QE8ZL=#V",
                    "radius" : 1,
                    "radiusBottomLeft" : 1,
                    "radiusBottomRight" : 1,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 1,
                    "radiusTopRight" : 1,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : null,
                    "top" : null,
                    "visible" : true,
                    "width" : 3,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [

                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.051999999999999998,
                    "centerAnchorY" : 0.52380952380952384,
                    "children" : [

                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportEnabled" : false,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(0, 0, 0, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 10,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "|3>+@u'V",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 18,
                    "locked" : false,
                    "name" : null,
                    "opacity" : 0.20000000000000001,
                    "parentid" : "QE8ZL=#V",
                    "radius" : 1,
                    "radiusBottomLeft" : 1,
                    "radiusBottomRight" : 1,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 1,
                    "radiusTopRight" : 1,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : null,
                    "top" : null,
                    "visible" : true,
                    "width" : 3,
                    "widthFactor" : null
                  }
                ],
                "clip" : false,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "exportEnabled" : false,
                "exportOptions" : [

                ],
                "fillColor" : "rgba(255, 255, 255, 1.00)",
                "fillEnabled" : false,
                "fillGradient" : {
                  "__class" : "LinearGradient",
                  "alpha" : 1,
                  "angle" : 0,
                  "end" : "rgba(0,0,0,0)",
                  "start" : "black"
                },
                "fillType" : "color",
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 21,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "QE8ZL=#V",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : 0,
                "locked" : false,
                "name" : "statusBar",
                "opacity" : 1,
                "parentid" : "AkMl>hAh",
                "radius" : 0,
                "radiusBottomLeft" : 0,
                "radiusBottomRight" : 0,
                "radiusPerCorner" : false,
                "radiusTopLeft" : 0,
                "radiusTopRight" : 0,
                "right" : 0,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "targetName" : null,
                "top" : 0,
                "visible" : true,
                "width" : 375,
                "widthFactor" : null
              },
              {
                "__class" : "TextNode",
                "autoSize" : true,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "bottom" : 16,
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.5,
                "centerAnchorY" : 0.64179104477611937,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "editable" : false,
                "exportEnabled" : false,
                "exportOptions" : [

                ],
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 18,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "=&4k`Y>@",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : null,
                "locked" : false,
                "name" : null,
                "opacity" : 1,
                "parentid" : "AkMl>hAh",
                "right" : null,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "shadows" : [

                ],
                "styledText" : {
                  "__class" : "StyledTextDraft",
                  "blocks" : [
                    {
                      "data" : {
                        "emptyStyle" : [
                          "LINEHEIGHT:1.2",
                          "ALIGN:center",
                          "COLOR:rgba(0, 0, 0, 1.00)",
                          "LETTERSPACING:0",
                          "FONT:__SF-UI-Text-Bold__",
                          "SIZE:15"
                        ]
                      },
                      "depth" : 0,
                      "entityRanges" : [

                      ],
                      "inlineStyleRanges" : [
                        {
                          "length" : 8,
                          "offset" : 0,
                          "style" : "LINEHEIGHT:1.2"
                        },
                        {
                          "length" : 8,
                          "offset" : 0,
                          "style" : "ALIGN:center"
                        },
                        {
                          "length" : 8,
                          "offset" : 0,
                          "style" : "COLOR:rgba(0, 0, 0, 1.00)"
                        },
                        {
                          "length" : 8,
                          "offset" : 0,
                          "style" : "LETTERSPACING:0"
                        },
                        {
                          "length" : 8,
                          "offset" : 0,
                          "style" : "FONT:__SF-UI-Text-Bold__"
                        },
                        {
                          "length" : 8,
                          "offset" : 0,
                          "style" : "SIZE:15"
                        }
                      ],
                      "key" : "b2jkb",
                      "text" : "Keyboard",
                      "type" : "unstyled"
                    }
                  ],
                  "entityMap" : {

                  }
                },
                "targetName" : null,
                "top" : 35,
                "visible" : true,
                "width" : 73,
                "widthFactor" : null,
                "x" : 175,
                "y" : 46
              }
            ],
            "clip" : false,
            "constraintsLocked" : false,
            "contrast" : 100,
            "contrastEnabled" : 0,
            "exportEnabled" : false,
            "exportOptions" : [

            ],
            "fillColor" : "rgba(255, 255, 255, 1.00)",
            "fillEnabled" : true,
            "fillGradient" : {
              "__class" : "LinearGradient",
              "alpha" : 1,
              "angle" : 90,
              "end" : "hsl(195, 100%, 50%)",
              "start" : "rgb(0, 85, 255)"
            },
            "fillType" : "color",
            "grayscale" : 0,
            "grayScaleEnabled" : 0,
            "height" : 67,
            "heightFactor" : null,
            "hueRotate" : 0,
            "hueRotateEnabled" : 0,
            "id" : "AkMl>hAh",
            "invert" : 0,
            "invertEnabled" : 0,
            "left" : 0,
            "locked" : false,
            "name" : "navBar",
            "opacity" : 1,
            "parentid" : "8U_1#pj_",
            "radius" : 0,
            "radiusBottomLeft" : 0,
            "radiusBottomRight" : 0,
            "radiusPerCorner" : false,
            "radiusTopLeft" : 0,
            "radiusTopRight" : 0,
            "right" : 0,
            "rotation" : 0,
            "saturate" : 100,
            "saturateEnabled" : 0,
            "sepia" : 0,
            "sepiaEnabled" : 0,
            "targetName" : null,
            "top" : 0,
            "visible" : true,
            "width" : 375,
            "widthFactor" : null
          },
          {
            "__class" : "RectangleNode",
            "aspectRatioLocked" : false,
            "blendingEnabled" : 0,
            "blendingMode" : "normal",
            "blur" : 12,
            "blurEnabled" : 0,
            "blurType" : "layer",
            "borderBottom" : 1,
            "borderColor" : "#222",
            "borderEnabled" : 0,
            "borderLeft" : 1,
            "borderPerSide" : false,
            "borderRight" : 1,
            "borderStyle" : "solid",
            "borderTop" : 1,
            "borderWidth" : 1,
            "bottom" : 216,
            "boxShadows" : [

            ],
            "brightness" : 100,
            "brightnessEnabled" : 0,
            "centerAnchorX" : 0.5,
            "centerAnchorY" : 0.63118440779610197,
            "children" : [
              {
                "__class" : "RectangleNode",
                "aspectRatioLocked" : false,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "borderBottom" : 1,
                "borderColor" : "#222",
                "borderEnabled" : 0,
                "borderLeft" : 1,
                "borderPerSide" : false,
                "borderRight" : 1,
                "borderStyle" : "solid",
                "borderTop" : 1,
                "borderWidth" : 1,
                "bottom" : 10,
                "boxShadows" : [
                  {
                    "__class" : "BoxShadow",
                    "blur" : 0,
                    "color" : "hsla(0, 0%, 0%, 0.05)",
                    "enabled" : true,
                    "inset" : true,
                    "spread" : 1,
                    "x" : 0,
                    "y" : 0
                  }
                ],
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.5,
                "centerAnchorY" : 0.5,
                "children" : [
                  {
                    "__class" : "TextNode",
                    "autoSize" : true,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "bottom" : null,
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.21267605633802816,
                    "centerAnchorY" : 0.5,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "editable" : false,
                    "exportOptions" : [

                    ],
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 19,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "Oy%IcDt=",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 16,
                    "locked" : false,
                    "name" : "text",
                    "opacity" : 1,
                    "parentid" : "v=ho3pX#",
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "shadows" : [

                    ],
                    "styledText" : {
                      "__class" : "StyledTextDraft",
                      "blocks" : [
                        {
                          "data" : {
                            "emptyStyle" : [
                              "ALIGN:left",
                              "FONT:SFUIText-Regular",
                              "LETTERSPACING:0",
                              "LINEHEIGHT:1.2",
                              "SIZE:16",
                              "COLOR:hsla(0, 0%, 0%, 0.2)"
                            ]
                          },
                          "depth" : 0,
                          "entityRanges" : [

                          ],
                          "inlineStyleRanges" : [
                            {
                              "length" : 8,
                              "offset" : 0,
                              "style" : "ALIGN:left"
                            },
                            {
                              "length" : 8,
                              "offset" : 0,
                              "style" : "FONT:SFUIText-Regular"
                            },
                            {
                              "length" : 8,
                              "offset" : 0,
                              "style" : "LETTERSPACING:0"
                            },
                            {
                              "length" : 8,
                              "offset" : 0,
                              "style" : "LINEHEIGHT:1.2"
                            },
                            {
                              "length" : 8,
                              "offset" : 0,
                              "style" : "SIZE:16"
                            },
                            {
                              "length" : 8,
                              "offset" : 0,
                              "style" : "COLOR:hsla(0, 0%, 0%, 0.2)"
                            }
                          ],
                          "key" : "3mth5",
                          "text" : "Reply...",
                          "type" : "unstyled"
                        }
                      ],
                      "entityMap" : {

                      }
                    },
                    "targetName" : "text",
                    "top" : null,
                    "visible" : true,
                    "width" : 56,
                    "widthFactor" : null,
                    "x" : 59,
                    "y" : 30
                  }
                ],
                "clip" : false,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "exportOptions" : [

                ],
                "fillColor" : "hsl(0, 0%, 98%)",
                "fillEnabled" : true,
                "fillGradient" : {
                  "__class" : "LinearGradient",
                  "alpha" : 1,
                  "angle" : 0,
                  "end" : "rgba(0,0,0,0)",
                  "start" : "black"
                },
                "fillType" : "color",
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 40,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "v=ho3pX#",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : 10,
                "locked" : false,
                "name" : "bg",
                "opacity" : 1,
                "parentid" : "9i&o6~#B",
                "radius" : 30,
                "radiusBottomLeft" : 30,
                "radiusBottomRight" : 30,
                "radiusPerCorner" : false,
                "radiusTopLeft" : 30,
                "radiusTopRight" : 30,
                "right" : 10,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "targetName" : "bg",
                "top" : 10,
                "visible" : true,
                "width" : 355,
                "widthFactor" : null
              }
            ],
            "clip" : false,
            "constraintsLocked" : false,
            "contrast" : 100,
            "contrastEnabled" : 0,
            "exportOptions" : [

            ],
            "fillColor" : "rgba(255, 255, 255, 1.00)",
            "fillEnabled" : true,
            "fillGradient" : {
              "__class" : "LinearGradient",
              "alpha" : 1,
              "angle" : 0,
              "end" : "rgba(0,0,0,0)",
              "start" : "black"
            },
            "fillType" : "color",
            "grayscale" : 0,
            "grayScaleEnabled" : 0,
            "height" : 60,
            "heightFactor" : null,
            "hueRotate" : 0,
            "hueRotateEnabled" : 0,
            "id" : "9i&o6~#B",
            "invert" : 0,
            "invertEnabled" : 0,
            "left" : 0,
            "locked" : false,
            "name" : "reply",
            "opacity" : 1,
            "parentid" : "8U_1#pj_",
            "radius" : 0,
            "radiusBottomLeft" : 0,
            "radiusBottomRight" : 0,
            "radiusPerCorner" : false,
            "radiusTopLeft" : 0,
            "radiusTopRight" : 0,
            "right" : 0,
            "rotation" : 0,
            "saturate" : 100,
            "saturateEnabled" : 0,
            "sepia" : 0,
            "sepiaEnabled" : 0,
            "targetName" : "reply",
            "top" : null,
            "visible" : true,
            "width" : 375,
            "widthFactor" : null
          },
          {
            "__class" : "RectangleNode",
            "aspectRatioLocked" : false,
            "blendingEnabled" : 0,
            "blendingMode" : "normal",
            "blur" : 12,
            "blurEnabled" : 0,
            "blurType" : "layer",
            "borderBottom" : 1,
            "borderColor" : "#222",
            "borderEnabled" : 0,
            "borderLeft" : 1,
            "borderPerSide" : false,
            "borderRight" : 1,
            "borderStyle" : "solid",
            "borderTop" : 1,
            "borderWidth" : 1,
            "bottom" : 0,
            "boxShadows" : [

            ],
            "brightness" : 100,
            "brightnessEnabled" : 0,
            "centerAnchorX" : 0.5,
            "centerAnchorY" : 0.83808095952023987,
            "children" : [
              {
                "__class" : "RectangleNode",
                "aspectRatioLocked" : false,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "borderBottom" : 1,
                "borderColor" : "#222",
                "borderEnabled" : 0,
                "borderLeft" : 1,
                "borderPerSide" : false,
                "borderRight" : 1,
                "borderStyle" : "solid",
                "borderTop" : 1,
                "borderWidth" : 1,
                "bottom" : 3,
                "boxShadows" : [
                  {
                    "__class" : "BoxShadow",
                    "blur" : 0,
                    "color" : "rgba(137, 138, 141, 1.00)",
                    "enabled" : true,
                    "inset" : false,
                    "spread" : 0,
                    "x" : 0,
                    "y" : 1
                  }
                ],
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.29866666666666669,
                "centerAnchorY" : 0.88888888888888884,
                "children" : [
                  {
                    "__class" : "ImageNode",
                    "aspectRatioLocked" : true,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [

                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.5,
                    "centerAnchorY" : 0.5,
                    "children" : [

                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "transparent",
                    "fillEnabled" : false,
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 20,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "BhU{lPC7",
                    "image" : "3DxS1rjv1LdsuplaKomUE8MRFjuiykyx4feMtdowrKac9Kax2DI4YvOPHwFY671A1E5xD6QRQUjbDBivDRuPQ.png",
                    "imageBackgroundSize" : "Cover",
                    "intrinsicHeight" : 40,
                    "intrinsicWidth" : 24,
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : null,
                    "opacity" : 1,
                    "originalFilename" : "",
                    "parentid" : "K4D^'8S#",
                    "radius" : 0,
                    "radiusBottomLeft" : 0,
                    "radiusBottomRight" : 0,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 0,
                    "radiusTopRight" : 0,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : null,
                    "top" : null,
                    "visible" : true,
                    "width" : 12,
                    "widthFactor" : null
                  }
                ],
                "clip" : false,
                "constraintsLocked" : false,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "exportOptions" : [

                ],
                "fillColor" : "rgba(255, 255, 255, 1.00)",
                "fillEnabled" : true,
                "fillGradient" : {
                  "__class" : "LinearGradient",
                  "alpha" : 1,
                  "angle" : 0,
                  "end" : "rgba(0,0,0,0)",
                  "start" : "black"
                },
                "fillType" : "color",
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 42,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "K4D^'8S#",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : 96,
                "locked" : false,
                "name" : "microphone",
                "opacity" : 1,
                "parentid" : "8$=@+#EL",
                "radius" : 5,
                "radiusBottomLeft" : 5,
                "radiusBottomRight" : 5,
                "radiusPerCorner" : false,
                "radiusTopLeft" : 5,
                "radiusTopRight" : 5,
                "right" : null,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "targetName" : null,
                "top" : null,
                "visible" : true,
                "width" : 32,
                "widthFactor" : null
              },
              {
                "__class" : "RectangleNode",
                "aspectRatioLocked" : false,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "borderBottom" : 1,
                "borderColor" : "#222",
                "borderEnabled" : 0,
                "borderLeft" : 1,
                "borderPerSide" : false,
                "borderRight" : 1,
                "borderStyle" : "solid",
                "borderTop" : 1,
                "borderWidth" : 1,
                "bottom" : 3,
                "boxShadows" : [
                  {
                    "__class" : "BoxShadow",
                    "blur" : 0,
                    "color" : "rgba(137, 138, 141, 1.00)",
                    "enabled" : true,
                    "inset" : false,
                    "spread" : 0,
                    "x" : 0,
                    "y" : 1
                  }
                ],
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.18933333333333333,
                "centerAnchorY" : 0.88888888888888884,
                "children" : [
                  {
                    "__class" : "ImageNode",
                    "aspectRatioLocked" : true,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [

                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.5,
                    "centerAnchorY" : 0.5,
                    "children" : [

                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "transparent",
                    "fillEnabled" : false,
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 20,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "I4'A_s2'",
                    "image" : "0Fhwy1Ht9Y2XZH5tSObigF3oAWTIXJJDH9PWUhh37BpXzGUfNzqdMHTysRLi5LxcdbgWVTTDuNGu5HSbeKYQ.png",
                    "imageBackgroundSize" : "Cover",
                    "intrinsicHeight" : 40,
                    "intrinsicWidth" : 40,
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : null,
                    "opacity" : 1,
                    "originalFilename" : "",
                    "parentid" : "lk\/uXI3g",
                    "radius" : 0,
                    "radiusBottomLeft" : 0,
                    "radiusBottomRight" : 0,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 0,
                    "radiusTopRight" : 0,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : null,
                    "top" : null,
                    "visible" : true,
                    "width" : 20,
                    "widthFactor" : null
                  }
                ],
                "clip" : false,
                "constraintsLocked" : true,
                "contrast" : 100,
                "contrastEnabled" : 0,
                "exportOptions" : [

                ],
                "fillColor" : "rgba(171, 180, 188, 1.00)",
                "fillEnabled" : true,
                "fillGradient" : {
                  "__class" : "LinearGradient",
                  "alpha" : 1,
                  "angle" : 0,
                  "end" : "rgba(0,0,0,0)",
                  "start" : "black"
                },
                "fillType" : "color",
                "grayscale" : 0,
                "grayScaleEnabled" : 0,
                "height" : 42,
                "heightFactor" : null,
                "hueRotate" : 0,
                "hueRotateEnabled" : 0,
                "id" : "lk\/uXI3g",
                "invert" : 0,
                "invertEnabled" : 0,
                "left" : null,
                "locked" : false,
                "name" : "emoji",
                "opacity" : 1,
                "parentid" : "8$=@+#EL",
                "radius" : 5,
                "radiusBottomLeft" : 5,
                "radiusBottomRight" : 5,
                "radiusPerCorner" : false,
                "radiusTopLeft" : 5,
                "radiusTopRight" : 5,
                "right" : 284,
                "rotation" : 0,
                "saturate" : 100,
                "saturateEnabled" : 0,
                "sepia" : 0,
                "sepiaEnabled" : 0,
                "targetName" : null,
                "top" : null,
                "visible" : true,
                "width" : 40,
                "widthFactor" : null
              },
              {
                "__class" : "RectangleNode",
                "aspectRatioLocked" : false,
                "blendingEnabled" : 0,
                "blendingMode" : "normal",
                "blur" : 12,
                "blurEnabled" : 0,
                "blurType" : "layer",
                "borderBottom" : 1,
                "borderColor" : "#222",
                "borderEnabled" : 0,
                "borderLeft" : 1,
                "borderPerSide" : false,
                "borderRight" : 1,
                "borderStyle" : "solid",
                "borderTop" : 1,
                "borderWidth" : 1,
                "bottom" : 0,
                "boxShadows" : [

                ],
                "brightness" : 100,
                "brightnessEnabled" : 0,
                "centerAnchorX" : 0.5,
                "centerAnchorY" : 0.5,
                "children" : [
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 58,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.78933333333333333,
                    "centerAnchorY" : 0.6342592592592593,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "2@B'y@.e",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "|(*C%^dR",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "M",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 22,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "|(*C%^dR",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "m",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : 63,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "m",
                    "top" : null,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 58,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.69333333333333336,
                    "centerAnchorY" : 0.6342592592592593,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "rh28Ym-S",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "]oJ^5@F9",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "N",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 19,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "]oJ^5@F9",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "n",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : 99,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "n",
                    "top" : null,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 58,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.59466666666666668,
                    "centerAnchorY" : 0.6342592592592593,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "db5op|^t",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "Lr5,wE+=",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "B",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 17,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "Lr5,wE+=",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "b",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : 136,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "b",
                    "top" : null,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 58,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.496,
                    "centerAnchorY" : 0.6342592592592593,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "XRF\/fch!",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "zFv;Ct$E",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "V",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 17,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "zFv;Ct$E",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "v",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "v",
                    "top" : null,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 58,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.39733333333333332,
                    "centerAnchorY" : 0.6342592592592593,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "B:Xz?5T&",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "omhorR.f",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "C",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 18,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "omhorR.f",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 133,
                    "locked" : false,
                    "name" : "c",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "c",
                    "top" : null,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 58,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.29866666666666669,
                    "centerAnchorY" : 0.6342592592592593,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "R2az{IY3",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "ZG],Vn#I",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "X",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 17,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "ZG],Vn#I",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 96,
                    "locked" : false,
                    "name" : "x",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "x",
                    "top" : null,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : 58,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.20000000000000001,
                    "centerAnchorY" : 0.6342592592592593,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "&4%8l~2&",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "ZYWQVJQ!",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "Z",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 17,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "ZYWQVJQ!",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : 59,
                    "locked" : false,
                    "name" : "z",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "z",
                    "top" : null,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.88800000000000001,
                    "centerAnchorY" : 0.37962962962962965,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "WM,U&IRz",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "dhy\/2YTl",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "L",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 15,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "dhy\/2YTl",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "l",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : 26,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "l",
                    "top" : 61,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.78933333333333333,
                    "centerAnchorY" : 0.37962962962962965,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "ml|2dS^Q",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "bfl}f1xZ",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "K",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 17,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "bfl}f1xZ",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "k",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : 63,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "k",
                    "top" : 61,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.69333333333333336,
                    "centerAnchorY" : 0.37962962962962965,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "m]aC?nzl",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "Gxd>?hT7",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "J",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 14,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "Gxd>?hT7",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "j",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : 99,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "j",
                    "top" : 61,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.59466666666666668,
                    "centerAnchorY" : 0.37962962962962965,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "&dPRg2bp",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "bLmk=tU,",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "H",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 19,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "bLmk=tU,",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "h",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : 136,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "h",
                    "top" : 61,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.496,
                    "centerAnchorY" : 0.38425925925925924,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "+a%4z!fm",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "[R}&OFG%",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "G",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 19,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" : "rgba(0,0,0,0)",
                      "start" : "black"
                    },
                    "fillType" : "color",
                    "grayscale" : 0,
                    "grayScaleEnabled" : 0,
                    "height" : 42,
                    "heightFactor" : null,
                    "hueRotate" : 0,
                    "hueRotateEnabled" : 0,
                    "id" : "[R}&OFG%",
                    "invert" : 0,
                    "invertEnabled" : 0,
                    "left" : null,
                    "locked" : false,
                    "name" : "g",
                    "opacity" : 1,
                    "parentid" : "]M[yQI+k",
                    "radius" : 5,
                    "radiusBottomLeft" : 5,
                    "radiusBottomRight" : 5,
                    "radiusPerCorner" : false,
                    "radiusTopLeft" : 5,
                    "radiusTopRight" : 5,
                    "right" : null,
                    "rotation" : 0,
                    "saturate" : 100,
                    "saturateEnabled" : 0,
                    "sepia" : 0,
                    "sepiaEnabled" : 0,
                    "targetName" : "g",
                    "top" : 62,
                    "visible" : true,
                    "width" : 32,
                    "widthFactor" : null
                  },
                  {
                    "__class" : "RectangleNode",
                    "aspectRatioLocked" : false,
                    "blendingEnabled" : 0,
                    "blendingMode" : "normal",
                    "blur" : 12,
                    "blurEnabled" : 0,
                    "blurType" : "layer",
                    "borderBottom" : 1,
                    "borderColor" : "#222",
                    "borderEnabled" : 0,
                    "borderLeft" : 1,
                    "borderPerSide" : false,
                    "borderRight" : 1,
                    "borderStyle" : "solid",
                    "borderTop" : 1,
                    "borderWidth" : 1,
                    "bottom" : null,
                    "boxShadows" : [
                      {
                        "__class" : "BoxShadow",
                        "blur" : 0,
                        "color" : "rgba(137, 138, 141, 1.00)",
                        "enabled" : true,
                        "inset" : false,
                        "spread" : 0,
                        "x" : 0,
                        "y" : 1
                      }
                    ],
                    "brightness" : 100,
                    "brightnessEnabled" : 0,
                    "centerAnchorX" : 0.39733333333333332,
                    "centerAnchorY" : 0.38425925925925924,
                    "children" : [
                      {
                        "__class" : "TextNode",
                        "autoSize" : true,
                        "blendingEnabled" : 0,
                        "blendingMode" : "normal",
                        "blur" : 12,
                        "blurEnabled" : 0,
                        "blurType" : "layer",
                        "bottom" : null,
                        "brightness" : 100,
                        "brightnessEnabled" : 0,
                        "centerAnchorX" : 0.5,
                        "centerAnchorY" : 0.51190476190476186,
                        "constraintsLocked" : true,
                        "contrast" : 100,
                        "contrastEnabled" : 0,
                        "editable" : false,
                        "exportOptions" : [

                        ],
                        "grayscale" : 0,
                        "grayScaleEnabled" : 0,
                        "height" : 27,
                        "heightFactor" : null,
                        "hueRotate" : 0,
                        "hueRotateEnabled" : 0,
                        "id" : "jsH7B[q=",
                        "invert" : 0,
                        "invertEnabled" : 0,
                        "left" : null,
                        "locked" : false,
                        "name" : null,
                        "opacity" : 1,
                        "parentid" : "8Al^<hBG",
                        "right" : null,
                        "rotation" : 0,
                        "saturate" : 100,
                        "saturateEnabled" : 0,
                        "sepia" : 0,
                        "sepiaEnabled" : 0,
                        "shadows" : [

                        ],
                        "styledText" : {
                          "__class" : "StyledTextDraft",
                          "blocks" : [
                            {
                              "data" : {
                                "emptyStyle" : [
                                  "FONT:SFUIText-Regular",
                                  "LETTERSPACING:0",
                                  "LINEHEIGHT:1.2",
                                  "SIZE:23",
                                  "COLOR:hsl(0, 0%, 0%)",
                                  "ALIGN:center"
                                ]
                              },
                              "depth" : 0,
                              "entityRanges" : [

                              ],
                              "inlineStyleRanges" : [
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "FONT:SFUIText-Regular"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LETTERSPACING:0"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "LINEHEIGHT:1.2"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "SIZE:23"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "COLOR:hsl(0, 0%, 0%)"
                                },
                                {
                                  "length" : 1,
                                  "offset" : 0,
                                  "style" : "ALIGN:center"
                                }
                              ],
                              "key" : "9nguq",
                              "text" : "F",
                              "type" : "unstyled"
                            }
                          ],
                          "entityMap" : {

                          }
                        },
                        "targetName" : null,
                        "top" : null,
                        "visible" : true,
                        "width" : 15,
                        "widthFactor" : null,
                        "x" : 30,
                        "y" : 486
                      }
                    ],
                    "clip" : false,
                    "constraintsLocked" : false,
                    "contrast" : 100,
                    "contrastEnabled" : 0,
                    "exportOptions" : [

                    ],
                    "fillColor" : "rgba(255, 255, 255, 1.00)",
                    "fillEnabled" : true,
                    "fillGradient" : {
                      "__class" : "LinearGradient",
                      "alpha" : 1,
                      "angle" : 0,
                      "end" 
Download .txt
gitextract_aocbfhix/

├── .gitignore
├── Makefile
├── README.md
├── keyboard/
│   └── Keyboard.framer/
│       ├── app.coffee
│       ├── framer/
│       │   ├── config.json
│       │   ├── design.vekter
│       │   ├── framer.js
│       │   ├── framer.js.map
│       │   ├── framer.vekter.js
│       │   └── version
│       └── modules/
│           └── input.coffee
├── scripts/
│   └── rm-unused-images.sh
└── src/
    └── input.coffee
Download .txt
SYMBOL INDEX (639 symbols across 1 files)

FILE: keyboard/Keyboard.framer/framer/framer.js
  function __webpack_require__ (line 1) | function __webpack_require__(moduleId){if(installedModules[moduleId])ret...
  function addMapEntry (line 1) | function addMapEntry(map,pair){return map.set(pair[0],pair[1]),map}
  function addSetEntry (line 1) | function addSetEntry(set,value){return set.add(value),set}
  function apply (line 1) | function apply(func,thisArg,args){switch(args.length){case 0:return func...
  function arrayAggregator (line 1) | function arrayAggregator(array,setter,iteratee,accumulator){for(var inde...
  function arrayEach (line 1) | function arrayEach(array,iteratee){for(var index=-1,length=null==array?0...
  function arrayEachRight (line 1) | function arrayEachRight(array,iteratee){for(var length=null==array?0:arr...
  function arrayEvery (line 1) | function arrayEvery(array,predicate){for(var index=-1,length=null==array...
  function arrayFilter (line 1) | function arrayFilter(array,predicate){for(var index=-1,length=null==arra...
  function arrayIncludes (line 1) | function arrayIncludes(array,value){var length=null==array?0:array.lengt...
  function arrayIncludesWith (line 1) | function arrayIncludesWith(array,value,comparator){for(var index=-1,leng...
  function arrayMap (line 1) | function arrayMap(array,iteratee){for(var index=-1,length=null==array?0:...
  function arrayPush (line 1) | function arrayPush(array,values){for(var index=-1,length=values.length,o...
  function arrayReduce (line 1) | function arrayReduce(array,iteratee,accumulator,initAccum){var index=-1,...
  function arrayReduceRight (line 1) | function arrayReduceRight(array,iteratee,accumulator,initAccum){var leng...
  function arraySome (line 1) | function arraySome(array,predicate){for(var index=-1,length=null==array?...
  function asciiToArray (line 1) | function asciiToArray(string){return string.split("")}
  function asciiWords (line 1) | function asciiWords(string){return string.match(reAsciiWord)||[]}
  function baseFindKey (line 1) | function baseFindKey(collection,predicate,eachFunc){var result;return ea...
  function baseFindIndex (line 1) | function baseFindIndex(array,predicate,fromIndex,fromRight){for(var leng...
  function baseIndexOf (line 1) | function baseIndexOf(array,value,fromIndex){return value===value?strictI...
  function baseIndexOfWith (line 1) | function baseIndexOfWith(array,value,fromIndex,comparator){for(var index...
  function baseIsNaN (line 1) | function baseIsNaN(value){return value!==value}
  function baseMean (line 1) | function baseMean(array,iteratee){var length=null==array?0:array.length;...
  function baseProperty (line 1) | function baseProperty(key){return function(object){return null==object?u...
  function basePropertyOf (line 1) | function basePropertyOf(object){return function(key){return null==object...
  function baseReduce (line 1) | function baseReduce(collection,iteratee,accumulator,initAccum,eachFunc){...
  function baseSortBy (line 1) | function baseSortBy(array,comparer){var length=array.length;for(array.so...
  function baseSum (line 1) | function baseSum(array,iteratee){for(var result,index=-1,length=array.le...
  function baseTimes (line 1) | function baseTimes(n,iteratee){for(var index=-1,result=Array(n);++index<...
  function baseToPairs (line 1) | function baseToPairs(object,props){return arrayMap(props,function(key){r...
  function baseUnary (line 1) | function baseUnary(func){return function(value){return func(value)}}
  function baseValues (line 1) | function baseValues(object,props){return arrayMap(props,function(key){re...
  function cacheHas (line 1) | function cacheHas(cache,key){return cache.has(key)}
  function charsStartIndex (line 1) | function charsStartIndex(strSymbols,chrSymbols){for(var index=-1,length=...
  function charsEndIndex (line 1) | function charsEndIndex(strSymbols,chrSymbols){for(var index=strSymbols.l...
  function countHolders (line 1) | function countHolders(array,placeholder){for(var length=array.length,res...
  function escapeStringChar (line 1) | function escapeStringChar(chr){return"\\"+stringEscapes[chr]}
  function getValue (line 1) | function getValue(object,key){return null==object?undefined:object[key]}
  function hasUnicode (line 1) | function hasUnicode(string){return reHasUnicode.test(string)}
  function hasUnicodeWord (line 1) | function hasUnicodeWord(string){return reHasUnicodeWord.test(string)}
  function iteratorToArray (line 1) | function iteratorToArray(iterator){for(var data,result=[];!(data=iterato...
  function mapToArray (line 1) | function mapToArray(map){var index=-1,result=Array(map.size);return map....
  function overArg (line 1) | function overArg(func,transform){return function(arg){return func(transf...
  function replaceHolders (line 1) | function replaceHolders(array,placeholder){for(var index=-1,length=array...
  function setToArray (line 1) | function setToArray(set){var index=-1,result=Array(set.size);return set....
  function setToPairs (line 1) | function setToPairs(set){var index=-1,result=Array(set.size);return set....
  function strictIndexOf (line 1) | function strictIndexOf(array,value,fromIndex){for(var index=fromIndex-1,...
  function strictLastIndexOf (line 1) | function strictLastIndexOf(array,value,fromIndex){for(var index=fromInde...
  function stringSize (line 1) | function stringSize(string){return hasUnicode(string)?unicodeSize(string...
  function stringToArray (line 1) | function stringToArray(string){return hasUnicode(string)?unicodeToArray(...
  function unicodeSize (line 1) | function unicodeSize(string){for(var result=reUnicode.lastIndex=0;reUnic...
  function unicodeToArray (line 1) | function unicodeToArray(string){return string.match(reUnicode)||[]}
  function unicodeWords (line 1) | function unicodeWords(string){return string.match(reUnicodeWord)||[]}
  function lodash (line 1) | function lodash(value){if(isObjectLike(value)&&!isArray(value)&&!(value ...
  function baseLodash (line 1) | function baseLodash(){}
  function LodashWrapper (line 1) | function LodashWrapper(value,chainAll){this.__wrapped__=value,this.__act...
  function LazyWrapper (line 1) | function LazyWrapper(value){this.__wrapped__=value,this.__actions__=[],t...
  function lazyClone (line 1) | function lazyClone(){var result=new LazyWrapper(this.__wrapped__);return...
  function lazyReverse (line 1) | function lazyReverse(){if(this.__filtered__){var result=new LazyWrapper(...
  function lazyValue (line 1) | function lazyValue(){var array=this.__wrapped__.value(),dir=this.__dir__...
  function Hash (line 1) | function Hash(entries){var index=-1,length=null==entries?0:entries.lengt...
  function hashClear (line 1) | function hashClear(){this.__data__=nativeCreate?nativeCreate(null):{},th...
  function hashDelete (line 1) | function hashDelete(key){var result=this.has(key)&&delete this.__data__[...
  function hashGet (line 1) | function hashGet(key){var data=this.__data__;if(nativeCreate){var result...
  function hashHas (line 1) | function hashHas(key){var data=this.__data__;return nativeCreate?data[ke...
  function hashSet (line 1) | function hashSet(key,value){var data=this.__data__;return this.size+=thi...
  function ListCache (line 1) | function ListCache(entries){var index=-1,length=null==entries?0:entries....
  function listCacheClear (line 1) | function listCacheClear(){this.__data__=[],this.size=0}
  function listCacheDelete (line 1) | function listCacheDelete(key){var data=this.__data__,index=assocIndexOf(...
  function listCacheGet (line 1) | function listCacheGet(key){var data=this.__data__,index=assocIndexOf(dat...
  function listCacheHas (line 1) | function listCacheHas(key){return assocIndexOf(this.__data__,key)>-1}
  function listCacheSet (line 1) | function listCacheSet(key,value){var data=this.__data__,index=assocIndex...
  function MapCache (line 1) | function MapCache(entries){var index=-1,length=null==entries?0:entries.l...
  function mapCacheClear (line 1) | function mapCacheClear(){this.size=0,this.__data__={hash:new Hash,map:ne...
  function mapCacheDelete (line 1) | function mapCacheDelete(key){var result=getMapData(this,key).delete(key)...
  function mapCacheGet (line 1) | function mapCacheGet(key){return getMapData(this,key).get(key)}
  function mapCacheHas (line 1) | function mapCacheHas(key){return getMapData(this,key).has(key)}
  function mapCacheSet (line 1) | function mapCacheSet(key,value){var data=getMapData(this,key),size=data....
  function SetCache (line 1) | function SetCache(values){var index=-1,length=null==values?0:values.leng...
  function setCacheAdd (line 1) | function setCacheAdd(value){return this.__data__.set(value,HASH_UNDEFINE...
  function setCacheHas (line 1) | function setCacheHas(value){return this.__data__.has(value)}
  function Stack (line 1) | function Stack(entries){var data=this.__data__=new ListCache(entries);th...
  function stackClear (line 1) | function stackClear(){this.__data__=new ListCache,this.size=0}
  function stackDelete (line 1) | function stackDelete(key){var data=this.__data__,result=data.delete(key)...
  function stackGet (line 1) | function stackGet(key){return this.__data__.get(key)}
  function stackHas (line 1) | function stackHas(key){return this.__data__.has(key)}
  function stackSet (line 1) | function stackSet(key,value){var data=this.__data__;if(data instanceof L...
  function arrayLikeKeys (line 1) | function arrayLikeKeys(value,inherited){var isArr=isArray(value),isArg=!...
  function arraySample (line 1) | function arraySample(array){var length=array.length;return length?array[...
  function arraySampleSize (line 1) | function arraySampleSize(array,n){return shuffleSelf(copyArray(array),ba...
  function arrayShuffle (line 1) | function arrayShuffle(array){return shuffleSelf(copyArray(array))}
  function assignMergeValue (line 1) | function assignMergeValue(object,key,value){(value===undefined||eq(objec...
  function assignValue (line 1) | function assignValue(object,key,value){var objValue=object[key];hasOwnPr...
  function assocIndexOf (line 1) | function assocIndexOf(array,key){for(var length=array.length;length--;)i...
  function baseAggregator (line 1) | function baseAggregator(collection,setter,iteratee,accumulator){return b...
  function baseAssign (line 1) | function baseAssign(object,source){return object&&copyObject(source,keys...
  function baseAssignIn (line 1) | function baseAssignIn(object,source){return object&&copyObject(source,ke...
  function baseAssignValue (line 1) | function baseAssignValue(object,key,value){"__proto__"==key&&definePrope...
  function baseAt (line 1) | function baseAt(object,paths){for(var index=-1,length=paths.length,resul...
  function baseClamp (line 1) | function baseClamp(number,lower,upper){return number===number&&(upper!==...
  function baseClone (line 1) | function baseClone(value,bitmask,customizer,key,object,stack){var result...
  function baseConforms (line 1) | function baseConforms(source){var props=keys(source);return function(obj...
  function baseConformsTo (line 1) | function baseConformsTo(object,source,props){var length=props.length;if(...
  function baseDelay (line 1) | function baseDelay(func,wait,args){if("function"!=typeof func)throw new ...
  function baseDifference (line 1) | function baseDifference(array,values,iteratee,comparator){var index=-1,i...
  function baseEvery (line 1) | function baseEvery(collection,predicate){var result=!0;return baseEach(c...
  function baseExtremum (line 1) | function baseExtremum(array,iteratee,comparator){for(var index=-1,length...
  function baseFill (line 1) | function baseFill(array,value,start,end){var length=array.length;
  function baseFilter (line 2) | function baseFilter(collection,predicate){var result=[];return baseEach(...
  function baseFlatten (line 2) | function baseFlatten(array,depth,predicate,isStrict,result){var index=-1...
  function baseForOwn (line 2) | function baseForOwn(object,iteratee){return object&&baseFor(object,itera...
  function baseForOwnRight (line 2) | function baseForOwnRight(object,iteratee){return object&&baseForRight(ob...
  function baseFunctions (line 2) | function baseFunctions(object,props){return arrayFilter(props,function(k...
  function baseGet (line 2) | function baseGet(object,path){path=castPath(path,object);for(var index=0...
  function baseGetAllKeys (line 2) | function baseGetAllKeys(object,keysFunc,symbolsFunc){var result=keysFunc...
  function baseGetTag (line 2) | function baseGetTag(value){return null==value?value===undefined?undefine...
  function baseGt (line 2) | function baseGt(value,other){return value>other}
  function baseHas (line 2) | function baseHas(object,key){return null!=object&&hasOwnProperty.call(ob...
  function baseHasIn (line 2) | function baseHasIn(object,key){return null!=object&&key in Object(object)}
  function baseInRange (line 2) | function baseInRange(number,start,end){return number>=nativeMin(start,en...
  function baseIntersection (line 2) | function baseIntersection(arrays,iteratee,comparator){for(var includes=c...
  function baseInverter (line 2) | function baseInverter(object,setter,iteratee,accumulator){return baseFor...
  function baseInvoke (line 2) | function baseInvoke(object,path,args){path=castPath(path,object),object=...
  function baseIsArguments (line 2) | function baseIsArguments(value){return isObjectLike(value)&&baseGetTag(v...
  function baseIsArrayBuffer (line 2) | function baseIsArrayBuffer(value){return isObjectLike(value)&&baseGetTag...
  function baseIsDate (line 2) | function baseIsDate(value){return isObjectLike(value)&&baseGetTag(value)...
  function baseIsEqual (line 2) | function baseIsEqual(value,other,bitmask,customizer,stack){return value=...
  function baseIsEqualDeep (line 2) | function baseIsEqualDeep(object,other,bitmask,customizer,equalFunc,stack...
  function baseIsMap (line 2) | function baseIsMap(value){return isObjectLike(value)&&getTag(value)==map...
  function baseIsMatch (line 2) | function baseIsMatch(object,source,matchData,customizer){var index=match...
  function baseIsNative (line 2) | function baseIsNative(value){if(!isObject(value)||isMasked(value))return...
  function baseIsRegExp (line 2) | function baseIsRegExp(value){return isObjectLike(value)&&baseGetTag(valu...
  function baseIsSet (line 2) | function baseIsSet(value){return isObjectLike(value)&&getTag(value)==set...
  function baseIsTypedArray (line 2) | function baseIsTypedArray(value){return isObjectLike(value)&&isLength(va...
  function baseIteratee (line 2) | function baseIteratee(value){return"function"==typeof value?value:null==...
  function baseKeys (line 2) | function baseKeys(object){if(!isPrototype(object))return nativeKeys(obje...
  function baseKeysIn (line 2) | function baseKeysIn(object){if(!isObject(object))return nativeKeysIn(obj...
  function baseLt (line 2) | function baseLt(value,other){return value<other}
  function baseMap (line 2) | function baseMap(collection,iteratee){var index=-1,result=isArrayLike(co...
  function baseMatches (line 2) | function baseMatches(source){var matchData=getMatchData(source);return 1...
  function baseMatchesProperty (line 2) | function baseMatchesProperty(path,srcValue){return isKey(path)&&isStrict...
  function baseMerge (line 2) | function baseMerge(object,source,srcIndex,customizer,stack){object!==sou...
  function baseMergeDeep (line 2) | function baseMergeDeep(object,source,key,srcIndex,mergeFunc,customizer,s...
  function baseNth (line 2) | function baseNth(array,n){var length=array.length;if(length)return n+=n<...
  function baseOrderBy (line 2) | function baseOrderBy(collection,iteratees,orders){var index=-1;iteratees...
  function basePick (line 2) | function basePick(object,paths){return basePickBy(object,paths,function(...
  function basePickBy (line 2) | function basePickBy(object,paths,predicate){for(var index=-1,length=path...
  function basePropertyDeep (line 2) | function basePropertyDeep(path){return function(object){return baseGet(o...
  function basePullAll (line 2) | function basePullAll(array,values,iteratee,comparator){var indexOf=compa...
  function basePullAt (line 2) | function basePullAt(array,indexes){for(var length=array?indexes.length:0...
  function baseRandom (line 2) | function baseRandom(lower,upper){return lower+nativeFloor(nativeRandom()...
  function baseRange (line 2) | function baseRange(start,end,step,fromRight){for(var index=-1,length=nat...
  function baseRepeat (line 2) | function baseRepeat(string,n){var result="";if(!string||n<1||n>MAX_SAFE_...
  function baseRest (line 2) | function baseRest(func,start){return setToString(overRest(func,start,ide...
  function baseSample (line 2) | function baseSample(collection){return arraySample(values(collection))}
  function baseSampleSize (line 2) | function baseSampleSize(collection,n){var array=values(collection);retur...
  function baseSet (line 2) | function baseSet(object,path,value,customizer){if(!isObject(object))retu...
  function baseShuffle (line 2) | function baseShuffle(collection){return shuffleSelf(values(collection))}
  function baseSlice (line 2) | function baseSlice(array,start,end){var index=-1,length=array.length;sta...
  function baseSome (line 2) | function baseSome(collection,predicate){var result;return baseEach(colle...
  function baseSortedIndex (line 2) | function baseSortedIndex(array,value,retHighest){var low=0,high=null==ar...
  function baseSortedIndexBy (line 2) | function baseSortedIndexBy(array,value,iteratee,retHighest){value=iterat...
  function baseSortedUniq (line 2) | function baseSortedUniq(array,iteratee){for(var index=-1,length=array.le...
  function baseToNumber (line 2) | function baseToNumber(value){return"number"==typeof value?value:isSymbol...
  function baseToString (line 2) | function baseToString(value){if("string"==typeof value)return value;if(i...
  function baseUniq (line 2) | function baseUniq(array,iteratee,comparator){var index=-1,includes=array...
  function baseUnset (line 2) | function baseUnset(object,path){return path=castPath(path,object),object...
  function baseUpdate (line 2) | function baseUpdate(object,path,updater,customizer){return baseSet(objec...
  function baseWhile (line 2) | function baseWhile(array,predicate,isDrop,fromRight){for(var length=arra...
  function baseWrapperValue (line 2) | function baseWrapperValue(value,actions){var result=value;return result ...
  function baseXor (line 2) | function baseXor(arrays,iteratee,comparator){var length=arrays.length;if...
  function baseZipObject (line 2) | function baseZipObject(props,values,assignFunc){for(var index=-1,length=...
  function castArrayLikeObject (line 2) | function castArrayLikeObject(value){return isArrayLikeObject(value)?valu...
  function castFunction (line 2) | function castFunction(value){return"function"==typeof value?value:identity}
  function castPath (line 2) | function castPath(value,object){return isArray(value)?value:isKey(value,...
  function castSlice (line 2) | function castSlice(array,start,end){var length=array.length;return end=e...
  function cloneBuffer (line 2) | function cloneBuffer(buffer,isDeep){if(isDeep)return buffer.slice();var ...
  function cloneArrayBuffer (line 2) | function cloneArrayBuffer(arrayBuffer){var result=new arrayBuffer.constr...
  function cloneDataView (line 2) | function cloneDataView(dataView,isDeep){var buffer=isDeep?cloneArrayBuff...
  function cloneMap (line 2) | function cloneMap(map,isDeep,cloneFunc){var array=isDeep?cloneFunc(mapTo...
  function cloneRegExp (line 2) | function cloneRegExp(regexp){var result=new regexp.constructor(regexp.so...
  function cloneSet (line 2) | function cloneSet(set,isDeep,cloneFunc){var array=isDeep?cloneFunc(setTo...
  function cloneSymbol (line 2) | function cloneSymbol(symbol){return symbolValueOf?Object(symbolValueOf.c...
  function cloneTypedArray (line 2) | function cloneTypedArray(typedArray,isDeep){var buffer=isDeep?cloneArray...
  function compareAscending (line 2) | function compareAscending(value,other){if(value!==other){var valIsDefine...
  function compareMultiple (line 2) | function compareMultiple(object,other,orders){for(var index=-1,objCriter...
  function composeArgs (line 2) | function composeArgs(args,partials,holders,isCurried){for(var argsIndex=...
  function composeArgsRight (line 2) | function composeArgsRight(args,partials,holders,isCurried){for(var argsI...
  function copyArray (line 2) | function copyArray(source,array){var index=-1,length=source.length;for(a...
  function copyObject (line 2) | function copyObject(source,props,object,customizer){var isNew=!object;ob...
  function copySymbols (line 2) | function copySymbols(source,object){return copyObject(source,getSymbols(...
  function copySymbolsIn (line 2) | function copySymbolsIn(source,object){return copyObject(source,getSymbol...
  function createAggregator (line 2) | function createAggregator(setter,initializer){return function(collection...
  function createAssigner (line 2) | function createAssigner(assigner){return baseRest(function(object,source...
  function createBaseEach (line 2) | function createBaseEach(eachFunc,fromRight){return function(collection,i...
  function createBaseFor (line 2) | function createBaseFor(fromRight){return function(object,iteratee,keysFu...
  function createBind (line 2) | function createBind(func,bitmask,thisArg){function wrapper(){var fn=this...
  function createCaseFirst (line 2) | function createCaseFirst(methodName){return function(string){string=toSt...
  function createCompounder (line 2) | function createCompounder(callback){return function(string){return array...
  function createCtor (line 2) | function createCtor(Ctor){return function(){var args=arguments;switch(ar...
  function createCurry (line 2) | function createCurry(func,bitmask,arity){function wrapper(){for(var leng...
  function createFind (line 2) | function createFind(findIndexFunc){return function(collection,predicate,...
  function createFlow (line 2) | function createFlow(fromRight){return flatRest(function(funcs){var lengt...
  function createHybrid (line 2) | function createHybrid(func,bitmask,thisArg,partials,holders,partialsRigh...
  function createInverter (line 2) | function createInverter(setter,toIteratee){return function(object,iterat...
  function createMathOperation (line 2) | function createMathOperation(operator,defaultValue){return function(valu...
  function createOver (line 2) | function createOver(arrayFunc){return flatRest(function(iteratees){retur...
  function createPadding (line 2) | function createPadding(length,chars){chars=chars===undefined?" ":baseToS...
  function createPartial (line 2) | function createPartial(func,bitmask,thisArg,partials){function wrapper()...
  function createRange (line 2) | function createRange(fromRight){return function(start,end,step){return s...
  function createRelationalOperation (line 2) | function createRelationalOperation(operator){return function(value,other...
  function createRecurry (line 2) | function createRecurry(func,bitmask,wrapFunc,placeholder,thisArg,partial...
  function createRound (line 2) | function createRound(methodName){var func=Math[methodName];return functi...
  function createToPairs (line 2) | function createToPairs(keysFunc){return function(object){var tag=getTag(...
  function createWrap (line 2) | function createWrap(func,bitmask,thisArg,partials,holders,argPos,ary,ari...
  function customDefaultsAssignIn (line 3) | function customDefaultsAssignIn(objValue,srcValue,key,object){return obj...
  function customDefaultsMerge (line 3) | function customDefaultsMerge(objValue,srcValue,key,object,source,stack){...
  function customOmitClone (line 3) | function customOmitClone(value){return isPlainObject(value)?undefined:va...
  function equalArrays (line 3) | function equalArrays(array,other,bitmask,customizer,equalFunc,stack){var...
  function equalByTag (line 3) | function equalByTag(object,other,tag,bitmask,customizer,equalFunc,stack)...
  function equalObjects (line 3) | function equalObjects(object,other,bitmask,customizer,equalFunc,stack){v...
  function flatRest (line 3) | function flatRest(func){return setToString(overRest(func,undefined,flatt...
  function getAllKeys (line 3) | function getAllKeys(object){return baseGetAllKeys(object,keys,getSymbols)}
  function getAllKeysIn (line 3) | function getAllKeysIn(object){return baseGetAllKeys(object,keysIn,getSym...
  function getFuncName (line 3) | function getFuncName(func){for(var result=func.name+"",array=realNames[r...
  function getHolder (line 3) | function getHolder(func){var object=hasOwnProperty.call(lodash,"placehol...
  function getIteratee (line 3) | function getIteratee(){var result=lodash.iteratee||iteratee;return resul...
  function getMapData (line 3) | function getMapData(map,key){var data=map.__data__;return isKeyable(key)...
  function getMatchData (line 3) | function getMatchData(object){for(var result=keys(object),length=result....
  function getNative (line 3) | function getNative(object,key){var value=getValue(object,key);return bas...
  function getRawTag (line 3) | function getRawTag(value){var isOwn=hasOwnProperty.call(value,symToStrin...
  function getView (line 3) | function getView(start,end,transforms){for(var index=-1,length=transform...
  function getWrapDetails (line 3) | function getWrapDetails(source){var match=source.match(reWrapDetails);re...
  function hasPath (line 3) | function hasPath(object,path,hasFunc){path=castPath(path,object);for(var...
  function initCloneArray (line 3) | function initCloneArray(array){var length=array.length,result=array.cons...
  function initCloneObject (line 3) | function initCloneObject(object){return"function"!=typeof object.constru...
  function initCloneByTag (line 3) | function initCloneByTag(object,tag,cloneFunc,isDeep){var Ctor=object.con...
  function insertWrapDetails (line 3) | function insertWrapDetails(source,details){var length=details.length;if(...
  function isFlattenable (line 3) | function isFlattenable(value){return isArray(value)||isArguments(value)|...
  function isIndex (line 3) | function isIndex(value,length){return length=null==length?MAX_SAFE_INTEG...
  function isIterateeCall (line 3) | function isIterateeCall(value,index,object){if(!isObject(object))return!...
  function isKey (line 3) | function isKey(value,object){if(isArray(value))return!1;var type=typeof ...
  function isKeyable (line 3) | function isKeyable(value){var type=typeof value;return"string"==type||"n...
  function isLaziable (line 3) | function isLaziable(func){var funcName=getFuncName(func),other=lodash[fu...
  function isMasked (line 3) | function isMasked(func){return!!maskSrcKey&&maskSrcKey in func}
  function isPrototype (line 3) | function isPrototype(value){var Ctor=value&&value.constructor,proto="fun...
  function isStrictComparable (line 3) | function isStrictComparable(value){return value===value&&!isObject(value)}
  function matchesStrictComparable (line 3) | function matchesStrictComparable(key,srcValue){return function(object){r...
  function memoizeCapped (line 3) | function memoizeCapped(func){var result=memoize(func,function(key){retur...
  function mergeData (line 3) | function mergeData(data,source){var bitmask=data[1],srcBitmask=source[1]...
  function nativeKeysIn (line 3) | function nativeKeysIn(object){var result=[];if(null!=object)for(var key ...
  function objectToString (line 3) | function objectToString(value){return nativeObjectToString.call(value)}
  function overRest (line 3) | function overRest(func,start,transform){return start=nativeMax(start===u...
  function parent (line 3) | function parent(object,path){return path.length<2?object:baseGet(object,...
  function reorder (line 3) | function reorder(array,indexes){for(var arrLength=array.length,length=na...
  function setWrapToString (line 3) | function setWrapToString(wrapper,reference,bitmask){var source=reference...
  function shortOut (line 3) | function shortOut(func){var count=0,lastCalled=0;return function(){var s...
  function shuffleSelf (line 3) | function shuffleSelf(array,size){var index=-1,length=array.length,lastIn...
  function toKey (line 3) | function toKey(value){if("string"==typeof value||isSymbol(value))return ...
  function toSource (line 3) | function toSource(func){if(null!=func){try{return funcToString.call(func...
  function updateWrapDetails (line 3) | function updateWrapDetails(details,bitmask){return arrayEach(wrapFlags,f...
  function wrapperClone (line 3) | function wrapperClone(wrapper){if(wrapper instanceof LazyWrapper)return ...
  function chunk (line 3) | function chunk(array,size,guard){size=(guard?isIterateeCall(array,size,g...
  function compact (line 3) | function compact(array){for(var index=-1,length=null==array?0:array.leng...
  function concat (line 3) | function concat(){var length=arguments.length;if(!length)return[];for(va...
  function drop (line 3) | function drop(array,n,guard){var length=null==array?0:array.length;retur...
  function dropRight (line 3) | function dropRight(array,n,guard){var length=null==array?0:array.length;...
  function dropRightWhile (line 3) | function dropRightWhile(array,predicate){return array&&array.length?base...
  function dropWhile (line 3) | function dropWhile(array,predicate){return array&&array.length?baseWhile...
  function fill (line 3) | function fill(array,value,start,end){var length=null==array?0:array.leng...
  function findIndex (line 3) | function findIndex(array,predicate,fromIndex){var length=null==array?0:a...
  function findLastIndex (line 3) | function findLastIndex(array,predicate,fromIndex){var length=null==array...
  function flatten (line 3) | function flatten(array){var length=null==array?0:array.length;return len...
  function flattenDeep (line 3) | function flattenDeep(array){var length=null==array?0:array.length;return...
  function flattenDepth (line 3) | function flattenDepth(array,depth){var length=null==array?0:array.length...
  function fromPairs (line 3) | function fromPairs(pairs){for(var index=-1,length=null==pairs?0:pairs.le...
  function head (line 3) | function head(array){return array&&array.length?array[0]:undefined}
  function indexOf (line 3) | function indexOf(array,value,fromIndex){var length=null==array?0:array.l...
  function initial (line 3) | function initial(array){var length=null==array?0:array.length;return len...
  function join (line 3) | function join(array,separator){return null==array?"":nativeJoin.call(arr...
  function last (line 3) | function last(array){var length=null==array?0:array.length;return length...
  function lastIndexOf (line 3) | function lastIndexOf(array,value,fromIndex){var length=null==array?0:arr...
  function nth (line 3) | function nth(array,n){return array&&array.length?baseNth(array,toInteger...
  function pullAll (line 3) | function pullAll(array,values){return array&&array.length&&values&&value...
  function pullAllBy (line 3) | function pullAllBy(array,values,iteratee){return array&&array.length&&va...
  function pullAllWith (line 3) | function pullAllWith(array,values,comparator){return array&&array.length...
  function remove (line 3) | function remove(array,predicate){var result=[];if(!array||!array.length)...
  function reverse (line 3) | function reverse(array){return null==array?array:nativeReverse.call(array)}
  function slice (line 3) | function slice(array,start,end){var length=null==array?0:array.length;re...
  function sortedIndex (line 3) | function sortedIndex(array,value){return baseSortedIndex(array,value)}
  function sortedIndexBy (line 3) | function sortedIndexBy(array,value,iteratee){return baseSortedIndexBy(ar...
  function sortedIndexOf (line 3) | function sortedIndexOf(array,value){var length=null==array?0:array.lengt...
  function sortedLastIndex (line 3) | function sortedLastIndex(array,value){return baseSortedIndex(array,value...
  function sortedLastIndexBy (line 3) | function sortedLastIndexBy(array,value,iteratee){return baseSortedIndexB...
  function sortedLastIndexOf (line 3) | function sortedLastIndexOf(array,value){var length=null==array?0:array.l...
  function sortedUniq (line 3) | function sortedUniq(array){return array&&array.length?baseSortedUniq(arr...
  function sortedUniqBy (line 3) | function sortedUniqBy(array,iteratee){return array&&array.length?baseSor...
  function tail (line 3) | function tail(array){var length=null==array?0:array.length;return length...
  function take (line 3) | function take(array,n,guard){return array&&array.length?(n=guard||n===un...
  function takeRight (line 3) | function takeRight(array,n,guard){var length=null==array?0:array.length;...
  function takeRightWhile (line 3) | function takeRightWhile(array,predicate){return array&&array.length?base...
  function takeWhile (line 3) | function takeWhile(array,predicate){return array&&array.length?baseWhile...
  function uniq (line 3) | function uniq(array){return array&&array.length?baseUniq(array):[]}
  function uniqBy (line 3) | function uniqBy(array,iteratee){return array&&array.length?baseUniq(arra...
  function uniqWith (line 3) | function uniqWith(array,comparator){return comparator="function"==typeof...
  function unzip (line 3) | function unzip(array){if(!array||!array.length)return[];var length=0;ret...
  function unzipWith (line 3) | function unzipWith(array,iteratee){if(!array||!array.length)return[];var...
  function zipObject (line 3) | function zipObject(props,values){return baseZipObject(props||[],values||...
  function zipObjectDeep (line 3) | function zipObjectDeep(props,values){return baseZipObject(props||[],valu...
  function chain (line 3) | function chain(value){var result=lodash(value);return result.__chain__=!...
  function tap (line 3) | function tap(value,interceptor){return interceptor(value),value}
  function thru (line 3) | function thru(value,interceptor){return interceptor(value)}
  function wrapperChain (line 3) | function wrapperChain(){return chain(this)}
  function wrapperCommit (line 3) | function wrapperCommit(){return new LodashWrapper(this.value(),this.__ch...
  function wrapperNext (line 3) | function wrapperNext(){this.__values__===undefined&&(this.__values__=toA...
  function wrapperToIterator (line 3) | function wrapperToIterator(){return this}
  function wrapperPlant (line 3) | function wrapperPlant(value){for(var result,parent=this;parent instanceo...
  function wrapperReverse (line 3) | function wrapperReverse(){var value=this.__wrapped__;if(value instanceof...
  function wrapperValue (line 3) | function wrapperValue(){return baseWrapperValue(this.__wrapped__,this.__...
  function every (line 3) | function every(collection,predicate,guard){var func=isArray(collection)?...
  function filter (line 3) | function filter(collection,predicate){var func=isArray(collection)?array...
  function flatMap (line 3) | function flatMap(collection,iteratee){return baseFlatten(map(collection,...
  function flatMapDeep (line 3) | function flatMapDeep(collection,iteratee){return baseFlatten(map(collect...
  function flatMapDepth (line 3) | function flatMapDepth(collection,iteratee,depth){return depth=depth===un...
  function forEach (line 3) | function forEach(collection,iteratee){var func=isArray(collection)?array...
  function forEachRight (line 3) | function forEachRight(collection,iteratee){var func=isArray(collection)?...
  function includes (line 3) | function includes(collection,value,fromIndex,guard){collection=isArrayLi...
  function map (line 3) | function map(collection,iteratee){var func=isArray(collection)?arrayMap:...
  function orderBy (line 3) | function orderBy(collection,iteratees,orders,guard){return null==collect...
  function reduce (line 3) | function reduce(collection,iteratee,accumulator){var func=isArray(collec...
  function reduceRight (line 3) | function reduceRight(collection,iteratee,accumulator){var func=isArray(c...
  function reject (line 3) | function reject(collection,predicate){var func=isArray(collection)?array...
  function sample (line 3) | function sample(collection){var func=isArray(collection)?arraySample:bas...
  function sampleSize (line 3) | function sampleSize(collection,n,guard){n=(guard?isIterateeCall(collecti...
  function shuffle (line 3) | function shuffle(collection){var func=isArray(collection)?arrayShuffle:b...
  function size (line 3) | function size(collection){if(null==collection)return 0;if(isArrayLike(co...
  function some (line 3) | function some(collection,predicate,guard){var func=isArray(collection)?a...
  function after (line 3) | function after(n,func){if("function"!=typeof func)throw new TypeError(FU...
  function ary (line 3) | function ary(func,n,guard){return n=guard?undefined:n,n=func&&null==n?fu...
  function before (line 3) | function before(n,func){var result;if("function"!=typeof func)throw new ...
  function curry (line 3) | function curry(func,arity,guard){arity=guard?undefined:arity;var result=...
  function curryRight (line 3) | function curryRight(func,arity,guard){arity=guard?undefined:arity;var re...
  function debounce (line 3) | function debounce(func,wait,options){function invokeFunc(time){var args=...
  function flip (line 3) | function flip(func){return createWrap(func,WRAP_FLIP_FLAG)}
  function memoize (line 3) | function memoize(func,resolver){if("function"!=typeof func||null!=resolv...
  function negate (line 3) | function negate(predicate){if("function"!=typeof predicate)throw new Typ...
  function once (line 3) | function once(func){return before(2,func)}
  function rest (line 3) | function rest(func,start){if("function"!=typeof func)throw new TypeError...
  function spread (line 3) | function spread(func,start){if("function"!=typeof func)throw new TypeErr...
  function throttle (line 3) | function throttle(func,wait,options){var leading=!0,trailing=!0;if("func...
  function unary (line 3) | function unary(func){return ary(func,1)}
  function wrap (line 3) | function wrap(value,wrapper){return partial(castFunction(wrapper),value)}
  function castArray (line 3) | function castArray(){if(!arguments.length)return[];var value=arguments[0...
  function clone (line 3) | function clone(value){return baseClone(value,CLONE_SYMBOLS_FLAG)}
  function cloneWith (line 3) | function cloneWith(value,customizer){return customizer="function"==typeo...
  function cloneDeep (line 3) | function cloneDeep(value){return baseClone(value,CLONE_DEEP_FLAG|CLONE_S...
  function cloneDeepWith (line 3) | function cloneDeepWith(value,customizer){return customizer="function"==t...
  function conformsTo (line 3) | function conformsTo(object,source){return null==source||baseConformsTo(o...
  function eq (line 3) | function eq(value,other){return value===other||value!==value&&other!==ot...
  function isArrayLike (line 3) | function isArrayLike(value){return null!=value&&isLength(value.length)&&...
  function isArrayLikeObject (line 3) | function isArrayLikeObject(value){return isObjectLike(value)&&isArrayLik...
  function isBoolean (line 3) | function isBoolean(value){return value===!0||value===!1||isObjectLike(va...
  function isElement (line 3) | function isElement(value){return isObjectLike(value)&&1===value.nodeType...
  function isEmpty (line 3) | function isEmpty(value){if(null==value)return!0;if(isArrayLike(value)&&(...
  function isEqual (line 3) | function isEqual(value,other){return baseIsEqual(value,other)}
  function isEqualWith (line 3) | function isEqualWith(value,other,customizer){customizer="function"==type...
  function isError (line 3) | function isError(value){if(!isObjectLike(value))return!1;var tag=baseGet...
  function isFinite (line 3) | function isFinite(value){return"number"==typeof value&&nativeIsFinite(va...
  function isFunction (line 4) | function isFunction(value){if(!isObject(value))return!1;var tag=baseGetT...
  function isInteger (line 4) | function isInteger(value){return"number"==typeof value&&value==toInteger...
  function isLength (line 4) | function isLength(value){return"number"==typeof value&&value>-1&&value%1...
  function isObject (line 4) | function isObject(value){var type=typeof value;return null!=value&&("obj...
  function isObjectLike (line 4) | function isObjectLike(value){return null!=value&&"object"==typeof value}
  function isMatch (line 4) | function isMatch(object,source){return object===source||baseIsMatch(obje...
  function isMatchWith (line 4) | function isMatchWith(object,source,customizer){return customizer="functi...
  function isNaN (line 4) | function isNaN(value){return isNumber(value)&&value!=+value}
  function isNative (line 4) | function isNative(value){if(isMaskable(value))throw new Error(CORE_ERROR...
  function isNull (line 4) | function isNull(value){return null===value}
  function isNil (line 4) | function isNil(value){return null==value}
  function isNumber (line 4) | function isNumber(value){return"number"==typeof value||isObjectLike(valu...
  function isPlainObject (line 4) | function isPlainObject(value){if(!isObjectLike(value)||baseGetTag(value)...
  function isSafeInteger (line 4) | function isSafeInteger(value){return isInteger(value)&&value>=-MAX_SAFE_...
  function isString (line 4) | function isString(value){return"string"==typeof value||!isArray(value)&&...
  function isSymbol (line 4) | function isSymbol(value){return"symbol"==typeof value||isObjectLike(valu...
  function isUndefined (line 4) | function isUndefined(value){return value===undefined}
  function isWeakMap (line 4) | function isWeakMap(value){return isObjectLike(value)&&getTag(value)==wea...
  function isWeakSet (line 4) | function isWeakSet(value){return isObjectLike(value)&&baseGetTag(value)=...
  function toArray (line 4) | function toArray(value){if(!value)return[];if(isArrayLike(value))return ...
  function toFinite (line 4) | function toFinite(value){if(!value)return 0===value?value:0;if(value=toN...
  function toInteger (line 4) | function toInteger(value){var result=toFinite(value),remainder=result%1;...
  function toLength (line 4) | function toLength(value){return value?baseClamp(toInteger(value),0,MAX_A...
  function toNumber (line 4) | function toNumber(value){if("number"==typeof value)return value;if(isSym...
  function toPlainObject (line 4) | function toPlainObject(value){return copyObject(value,keysIn(value))}
  function toSafeInteger (line 4) | function toSafeInteger(value){return value?baseClamp(toInteger(value),-M...
  function toString (line 4) | function toString(value){return null==value?"":baseToString(value)}
  function create (line 4) | function create(prototype,properties){var result=baseCreate(prototype);r...
  function findKey (line 4) | function findKey(object,predicate){return baseFindKey(object,getIteratee...
  function findLastKey (line 4) | function findLastKey(object,predicate){return baseFindKey(object,getIter...
  function forIn (line 4) | function forIn(object,iteratee){return null==object?object:baseFor(objec...
  function forInRight (line 4) | function forInRight(object,iteratee){return null==object?object:baseForR...
  function forOwn (line 4) | function forOwn(object,iteratee){return object&&baseForOwn(object,getIte...
  function forOwnRight (line 4) | function forOwnRight(object,iteratee){return object&&baseForOwnRight(obj...
  function functions (line 4) | function functions(object){return null==object?[]:baseFunctions(object,k...
  function functionsIn (line 4) | function functionsIn(object){return null==object?[]:baseFunctions(object...
  function get (line 4) | function get(object,path,defaultValue){var result=null==object?undefined...
  function has (line 4) | function has(object,path){return null!=object&&hasPath(object,path,baseH...
  function hasIn (line 4) | function hasIn(object,path){return null!=object&&hasPath(object,path,bas...
  function keys (line 4) | function keys(object){return isArrayLike(object)?arrayLikeKeys(object):b...
  function keysIn (line 4) | function keysIn(object){return isArrayLike(object)?arrayLikeKeys(object,...
  function mapKeys (line 4) | function mapKeys(object,iteratee){var result={};return iteratee=getItera...
  function mapValues (line 4) | function mapValues(object,iteratee){var result={};return iteratee=getIte...
  function omitBy (line 4) | function omitBy(object,predicate){return pickBy(object,negate(getIterate...
  function pickBy (line 4) | function pickBy(object,predicate){if(null==object)return{};var props=arr...
  function result (line 4) | function result(object,path,defaultValue){path=castPath(path,object);var...
  function set (line 4) | function set(object,path,value){return null==object?object:baseSet(objec...
  function setWith (line 4) | function setWith(object,path,value,customizer){return customizer="functi...
  function transform (line 4) | function transform(object,iteratee,accumulator){var isArr=isArray(object...
  function unset (line 4) | function unset(object,path){return null==object||baseUnset(object,path)}
  function update (line 4) | function update(object,path,updater){return null==object?object:baseUpda...
  function updateWith (line 4) | function updateWith(object,path,updater,customizer){return customizer="f...
  function values (line 4) | function values(object){return null==object?[]:baseValues(object,keys(ob...
  function valuesIn (line 4) | function valuesIn(object){return null==object?[]:baseValues(object,keysI...
  function clamp (line 4) | function clamp(number,lower,upper){return upper===undefined&&(upper=lowe...
  function inRange (line 4) | function inRange(number,start,end){return start=toFinite(start),end===un...
  function random (line 4) | function random(lower,upper,floating){if(floating&&"boolean"!=typeof flo...
  function capitalize (line 4) | function capitalize(string){return upperFirst(toString(string).toLowerCa...
  function deburr (line 4) | function deburr(string){return string=toString(string),string&&string.re...
  function endsWith (line 4) | function endsWith(string,target,position){string=toString(string),target...
  function escape (line 4) | function escape(string){return string=toString(string),string&&reHasUnes...
  function escapeRegExp (line 4) | function escapeRegExp(string){return string=toString(string),string&&reH...
  function pad (line 4) | function pad(string,length,chars){string=toString(string),length=toInteg...
  function padEnd (line 4) | function padEnd(string,length,chars){string=toString(string),length=toIn...
  function padStart (line 4) | function padStart(string,length,chars){string=toString(string),length=to...
  function parseInt (line 4) | function parseInt(string,radix,guard){return guard||null==radix?radix=0:...
  function repeat (line 4) | function repeat(string,n,guard){return n=(guard?isIterateeCall(string,n,...
  function replace (line 4) | function replace(){var args=arguments,string=toString(args[0]);return ar...
  function split (line 4) | function split(string,separator,limit){return limit&&"number"!=typeof li...
  function startsWith (line 4) | function startsWith(string,target,position){return string=toString(strin...
  function template (line 4) | function template(string,options,guard){var settings=lodash.templateSett...
  function toLower (line 4) | function toLower(value){return toString(value).toLowerCase()}
  function toUpper (line 4) | function toUpper(value){return toString(value).toUpperCase()}
  function trim (line 4) | function trim(string,chars,guard){if(string=toString(string),string&&(gu...
  function trimEnd (line 4) | function trimEnd(string,chars,guard){if(string=toString(string),string&&...
  function trimStart (line 4) | function trimStart(string,chars,guard){if(string=toString(string),string...
  function truncate (line 4) | function truncate(string,options){var length=DEFAULT_TRUNC_LENGTH,omissi...
  function unescape (line 4) | function unescape(string){return string=toString(string),string&&reHasEs...
  function words (line 4) | function words(string,pattern,guard){return string=toString(string),patt...
  function cond (line 4) | function cond(pairs){var length=null==pairs?0:pairs.length,toIteratee=ge...
  function conforms (line 4) | function conforms(source){return baseConforms(baseClone(source,CLONE_DEE...
  function constant (line 4) | function constant(value){return function(){return value}}
  function defaultTo (line 4) | function defaultTo(value,defaultValue){return null==value||value!==value...
  function identity (line 4) | function identity(value){return value}
  function iteratee (line 4) | function iteratee(func){return baseIteratee("function"==typeof func?func...
  function matches (line 4) | function matches(source){return baseMatches(baseClone(source,CLONE_DEEP_...
  function matchesProperty (line 4) | function matchesProperty(path,srcValue){return baseMatchesProperty(path,...
  function mixin (line 4) | function mixin(object,source,options){var props=keys(source),methodNames...
  function noConflict (line 4) | function noConflict(){return root._===this&&(root._=oldDash),this}
  function noop (line 4) | function noop(){}
  function nthArg (line 4) | function nthArg(n){return n=toInteger(n),baseRest(function(args){return ...
  function property (line 4) | function property(path){return isKey(path)?baseProperty(toKey(path)):bas...
  function propertyOf (line 4) | function propertyOf(object){return function(path){return null==object?un...
  function stubArray (line 4) | function stubArray(){return[]}
  function stubFalse (line 4) | function stubFalse(){return!1}
  function stubObject (line 4) | function stubObject(){return{}}
  function stubString (line 4) | function stubString(){return""}
  function stubTrue (line 4) | function stubTrue(){return!0}
  function times (line 4) | function times(n,iteratee){if(n=toInteger(n),n<1||n>MAX_SAFE_INTEGER)ret...
  function toPath (line 4) | function toPath(value){return isArray(value)?arrayMap(value,toKey):isSym...
  function uniqueId (line 4) | function uniqueId(prefix){var id=++idCounter;return toString(prefix)+id}
  function max (line 4) | function max(array){return array&&array.length?baseExtremum(array,identi...
  function maxBy (line 4) | function maxBy(array,iteratee){return array&&array.length?baseExtremum(a...
  function mean (line 4) | function mean(array){return baseMean(array,identity)}
  function meanBy (line 4) | function meanBy(array,iteratee){return baseMean(array,getIteratee(iterat...
  function min (line 4) | function min(array){return array&&array.length?baseExtremum(array,identi...
  function minBy (line 4) | function minBy(array,iteratee){return array&&array.length?baseExtremum(a...
  function sum (line 4) | function sum(array){return array&&array.length?baseSum(array,identity):0}
  function sumBy (line 4) | function sumBy(array,iteratee){return array&&array.length?baseSum(array,...
  function object (line 4) | function object(){}
  function ctor (line 6) | function ctor(){this.constructor=child}
  function ScreenClass (line 6) | function ScreenClass(){return ScreenClass.__super__.constructor.apply(th...
  function ctor (line 6) | function ctor(){this.constructor=child}
  function BaseClass (line 6) | function BaseClass(options){this.toInspect=bind(this.toInspect,this),thi...
  function ctor (line 6) | function ctor(){this.constructor=child}
  function EventEmitter (line 6) | function EventEmitter(){return EventEmitter.__super__.constructor.apply(...
  function EE (line 7) | function EE(fn,context,once){this.fn=fn,this.context=context,this.once=o...
  function EventEmitter (line 7) | function EventEmitter(){}
  function aa (line 7) | function aa(a,b,c){return a.call.apply(a.bind,arguments)}
  function ba (line 7) | function ba(a,b,c){if(!a)throw Error();if(2<arguments.length){var d=Arra...
  function p (line 7) | function p(a,b,c){return p=Function.prototype.bind&&-1!=Function.prototy...
  function ca (line 7) | function ca(a,b){this.a=a,this.o=b||a,this.c=this.o.document}
  function t (line 7) | function t(a,b,c,d){if(b=a.c.createElement(b),c)for(var e in c)c.hasOwnP...
  function u (line 7) | function u(a,b,c){a=a.c.getElementsByTagName(b)[0],a||(a=document.docume...
  function v (line 7) | function v(a){a.parentNode&&a.parentNode.removeChild(a)}
  function w (line 7) | function w(a,b,c){b=b||[],c=c||[];for(var d=a.className.split(/\s+/),e=0...
  function y (line 7) | function y(a,b){for(var c=a.className.split(/\s+/),d=0,e=c.length;d<e;d+...
  function ea (line 7) | function ea(a){return a.o.location.hostname||a.a.location.hostname}
  function z (line 7) | function z(a,b,c){function d(){m&&e&&f&&(m(g),m=null)}b=t(a,"link",{rel:...
  function A (line 7) | function A(a,b,c,d){var e=a.c.getElementsByTagName("head")[0];if(e){var ...
  function B (line 7) | function B(){this.a=0,this.c=null}
  function C (line 7) | function C(a){return a.a++,function(){a.a--,D(a)}}
  function E (line 7) | function E(a,b){a.c=b,D(a)}
  function D (line 7) | function D(a){0==a.a&&a.c&&(a.c(),a.c=null)}
  function F (line 7) | function F(a){this.a=a||"-"}
  function G (line 7) | function G(a,b){this.c=a,this.f=4,this.a="n";var c=(b||"n4").match(/^([n...
  function fa (line 7) | function fa(a){return H(a)+" "+(a.f+"00")+" 300px "+I(a.c)}
  function I (line 7) | function I(a){var b=[];a=a.split(/,\s*/);for(var c=0;c<a.length;c++){var...
  function J (line 7) | function J(a){return a.a+a.f}
  function H (line 7) | function H(a){var b="normal";return"o"===a.a?b="oblique":"i"===a.a&&(b="...
  function ga (line 7) | function ga(a){var b=4,c="n",d=null;return a&&((d=a.match(/(normal|obliq...
  function ha (line 7) | function ha(a,b){this.c=a,this.f=a.o.document.documentElement,this.h=b,t...
  function ia (line 7) | function ia(a){a.g&&w(a.f,[a.a.c("wf","loading")]),K(a,"loading")}
  function L (line 7) | function L(a){if(a.g){var b=y(a.f,a.a.c("wf","active")),c=[],d=[a.a.c("w...
  function K (line 7) | function K(a,b,c){a.j&&a.h[b]&&(c?a.h[b](c.c,J(c)):a.h[b]())}
  function ja (line 7) | function ja(){this.c={}}
  function ka (line 7) | function ka(a,b,c){var e,d=[];for(e in b)if(b.hasOwnProperty(e)){var f=a...
  function M (line 7) | function M(a,b){this.c=a,this.f=b,this.a=t(this.c,"span",{"aria-hidden":...
  function N (line 7) | function N(a){u(a.c,"body",a.a)}
  function O (line 7) | function O(a){return"display:block;position:absolute;top:-9999px;left:-9...
  function P (line 7) | function P(a,b,c,d,e,f){this.g=a,this.j=b,this.a=d,this.c=c,this.f=e||3e...
  function Q (line 7) | function Q(a,b,c,d,e,f,g){this.v=a,this.B=b,this.c=c,this.a=d,this.s=g||...
  function T (line 7) | function T(){if(null===S){var a=/AppleWebKit\/([0-9]+)(?:\.([0-9]+))/.ex...
  function la (line 7) | function la(a,b,c){for(var d in R)if(R.hasOwnProperty(d)&&b===a.f[R[d]]&...
  function U (line 7) | function U(a){var d,b=a.g.a.offsetWidth,c=a.h.a.offsetWidth;(d=b===a.f.s...
  function ma (line 7) | function ma(a){setTimeout(p(function(){U(this)},a),50)}
  function V (line 7) | function V(a,b){setTimeout(p(function(){v(this.g.a),v(this.h.a),v(this.j...
  function W (line 7) | function W(a,b,c){this.c=a,this.a=b,this.f=0,this.m=this.j=!1,this.s=c}
  function na (line 7) | function na(a){0==--a.f&&a.j&&(a.m?(a=a.a,a.g&&w(a.f,[a.a.c("wf","active...
  function oa (line 7) | function oa(a){this.j=a,this.a=new ja,this.h=0,this.f=this.g=!0}
  function qa (line 7) | function qa(a,b,c,d,e){var f=0==--a.h;(a.f||a.g)&&setTimeout(function(){...
  function pa (line 7) | function pa(a,b,c){var d=[],e=c.timeout;ia(b);var d=ka(a.a,c,a.c),f=new ...
  function ra (line 7) | function ra(a,b){this.c=a,this.a=b}
  function sa (line 7) | function sa(a,b){this.c=a,this.a=b}
  function ta (line 7) | function ta(a,b){a?this.c=a:this.c=ua,this.a=[],this.f=[],this.g=b||""}
  function va (line 7) | function va(a,b){for(var c=b.length,d=0;d<c;d++){var e=b[d].split(":");3...
  function wa (line 7) | function wa(a){if(0==a.a.length)throw Error("No fonts to load!");if(-1!=...
  function ya (line 7) | function ya(a){this.f=a,this.a=[],this.c={}}
  function Da (line 7) | function Da(a){for(var b=a.f.length,c=0;c<b;c++){var d=a.f[c].split(":")...
  function Ea (line 7) | function Ea(a,b){this.c=a,this.a=b}
  function Ga (line 7) | function Ga(a,b){this.c=a,this.a=b}
  function Ha (line 7) | function Ha(a,b){this.c=a,this.f=b,this.a=[]}
  function f (line 7) | function f(){q()-c>=b.f?e():a.fonts.load(fa(b.a),b.h).then(function(a){1...
  function b (line 7) | function b(){if(f["__mti_fntLst"+d]){var h,c=f["__mti_fntLst"+d](),e=[];...
  function ctor (line 7) | function ctor(){this.constructor=child}
  function Color (line 7) | function Color(color1,r,g,b){var color,input;return this.color=color1,th...
  function ctor (line 8) | function ctor(){this.constructor=child}
  function Gradient (line 8) | function Gradient(options){null==options&&(options={}),null==options.sta...
  function ctor (line 8) | function ctor(){this.constructor=child}
  function Layer (line 8) | function Layer(options){var j,len,p,ref;if(null==options&&(options={}),t...
  function ctor (line 10) | function ctor(){this.constructor=child}
  function Animation (line 10) | function Animation(){var args,layer,options,properties;if(args=1<=argume...
  function Animator (line 10) | function Animator(options){null==options&&(options={}),this.setup(options)}
  function ctor (line 10) | function ctor(){this.constructor=child}
  function LinearAnimator (line 10) | function LinearAnimator(){return LinearAnimator.__super__.constructor.ap...
  function ctor (line 11) | function ctor(){this.constructor=child}
  function BezierCurveAnimator (line 11) | function BezierCurveAnimator(){return BezierCurveAnimator.__super__.cons...
  function UnitBezier (line 11) | function UnitBezier(p1x,p1y,p2x,p2y){this.cx=3*p1x,this.bx=3*(p2x-p1x)-t...
  function ctor (line 11) | function ctor(){this.constructor=child}
  function SpringRK4Animator (line 11) | function SpringRK4Animator(){return this.finished=bind(this.finished,thi...
  function Integrator (line 11) | function Integrator(_accelerationForState){this._accelerationForState=_a...
  function LayerStates (line 11) | function LayerStates(layer){var _machine;_machine=new LayerStateMachine(...
  function ctor (line 11) | function ctor(){this.constructor=child}
  function LayerStateMachine (line 11) | function LayerStateMachine(_layer,_states){this._layer=_layer,this._stat...
  function InlineStyle (line 11) | function InlineStyle(configuration,text){_.isString(configuration)?(this...
  function StyledTextBlock (line 12) | function StyledTextBlock(configuration){var inlineStyle,text;if(text=con...
  function StyledText (line 12) | function StyledText(configuration){var ref;this.textAlign=null!=(ref=nul...
  function ctor (line 12) | function ctor(){this.constructor=child}
  function LayerDraggable (line 12) | function LayerDraggable(layer){var options;this.layer=layer,this._stopSi...
  function ctor (line 12) | function ctor(){this.constructor=child}
  function Simulation (line 12) | function Simulation(options){var SimulatorClass;null==options&&(options=...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function SpringSimulator (line 13) | function SpringSimulator(){return this.finished=bind(this.finished,this)...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function Simulator (line 13) | function Simulator(options){null==options&&(options={}),this._state={x:0...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function FrictionSimulator (line 13) | function FrictionSimulator(){return this.finished=bind(this.finished,thi...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function MomentumBounceSimulator (line 13) | function MomentumBounceSimulator(){return this.finished=bind(this.finish...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function EventBuffer (line 13) | function EventBuffer(options){null==options&&(options={}),this.options=_...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function LayerPinchable (line 13) | function LayerPinchable(layer){this.layer=layer,this._pinchEnd=bind(this...
  function LayerPropertyProxy (line 13) | function LayerPropertyProxy(target,callback){var desc,getter,i,len,prop,...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function BackgroundLayer (line 13) | function BackgroundLayer(options){var ref;null==options&&(options={}),th...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function VideoLayer (line 13) | function VideoLayer(options){null==options&&(options={}),this.player=doc...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function SVGLayer (line 13) | function SVGLayer(options){null==options&&(options={}),null!=options.htm...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function TextLayer (line 13) | function TextLayer(options){var explicitHeight,explicitWidth,fn,i,key,le...
  function ctor (line 13) | function ctor(){this.constructor=child}
  function AnimationGroup (line 14) | function AnimationGroup(){var args;args=1<=arguments.length?slice.call(a...
  function AnimationStateGroup (line 14) | function AnimationStateGroup(){var layers;layers=1<=arguments.length?sli...
  function Printer (line 14) | function Printer(){this.scrollToBottom=bind(this.scrollToBottom,this),th...
  function ctor (line 14) | function ctor(){this.constructor=child}
  function Context (line 14) | function Context(options){if(null==options&&(options={}),this.layout=bin...
  function ctor (line 14) | function ctor(){this.constructor=child}
  function DOMEventManagerElement (line 14) | function DOMEventManagerElement(element1){this.element=element1}
  function DOMEventManager (line 14) | function DOMEventManager(element){this.wrap=bind(this.wrap,this),this._e...
  function ctor (line 14) | function ctor(){this.constructor=child}
  function ScrollComponent (line 14) | function ScrollComponent(options){null==options&&(options={}),this._onMo...
  function ctor (line 15) | function ctor(){this.constructor=child}
  function PageComponent (line 15) | function PageComponent(options){this._resetHistory=bind(this._resetHisto...
  function ctor (line 15) | function ctor(){this.constructor=child}
  function Knob (line 15) | function Knob(options){Knob.__super__.constructor.call(this,options)}
  function SliderComponent (line 15) | function SliderComponent(options){null==options&&(options={}),this._upda...
  function ctor (line 15) | function ctor(){this.constructor=child}
  function Knob (line 15) | function Knob(options){null==options&&(options={}),_.defaults(options,{b...
  function RangeSliderComponent (line 15) | function RangeSliderComponent(options){var i,knob,len,ref;for(null==opti...
  function ctor (line 16) | function ctor(){this.constructor=child}
  function DeviceComponent (line 16) | function DeviceComponent(options){var defaults;null==options&&(options={...
  function ctor (line 17) | function ctor(){this.constructor=child}
  function GridComponent (line 17) | function GridComponent(options){null==options&&(options={}),GridComponen...
  function ctor (line 17) | function ctor(){this.constructor=child}
  function FlowComponent (line 17) | function FlowComponent(layerOrOptions,options){var layer;null==layerOrOp...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function CircularProgressComponent (line 18) | function CircularProgressComponent(options){null==options&&(options={}),...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function MIDIComponent (line 18) | function MIDIComponent(options){null==options&&(options={}),MIDIComponen...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function MIDIInput (line 18) | function MIDIInput(){return this._onmidimessage=bind(this._onmidimessage...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function AnimationLoop (line 18) | function AnimationLoop(){this.start=bind(this.start,this),this.delta=1/6...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function SpringDHOAnimator (line 18) | function SpringDHOAnimator(){return this.finished=bind(this.finished,thi...
  function Importer (line 18) | function Importer(path1,options,extraLayerProperties){var ref;this.path=...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function TouchEmulator (line 18) | function TouchEmulator(){this.mousemovePosition=bind(this.mousemovePosit...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function MobileScrollFixLayer (line 18) | function MobileScrollFixLayer(options){this._updateScrollListeners=bind(...
  function ctor (line 18) | function ctor(){this.constructor=child}
  function ErrorDisplay (line 19) | function ErrorDisplay(){this.resize=bind(this.resize,this),null==this._c...
  function Hints (line 19) | function Hints(){this._handleUp=bind(this._handleUp,this),this._handleDo...
  function ctor (line 19) | function ctor(){this.constructor=child}
  function Preloader (line 19) | function Preloader(options){null==options&&(options={}),this._setupConte...
  function GestureInputRecognizer (line 19) | function GestureInputRecognizer(){this._process=bind(this._process,this)...
  function ctor (line 19) | function ctor(){this.constructor=child}
  function Canvas (line 19) | function Canvas(options){null==options&&(options={}),this._handleResize=...
Condensed preview — 13 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (4,527K chars).
[
  {
    "path": ".gitignore",
    "chars": 418,
    "preview": "*/*.framer/.gitignore\n*/*.framer/.*.html\n*/*.framer/images/.gitkeep\n*/*.framer/images/design/*-*\n*/*.framer/index.html\n*"
  },
  {
    "path": "Makefile",
    "chars": 183,
    "preview": ".PHONY: help clean\n\ndefault: help\n\nclean:\n\tgit clean -Xdf\n\tscripts/rm-unused-images.sh\n\nhelp:\n\t@echo \"Run \\`make clean\\`"
  },
  {
    "path": "README.md",
    "chars": 4850,
    "preview": "<h1 align=\"center\">\n  <img src=\"https://d.pr/i/n8cWkV+\" width=\"160\" alt=\"icon\"><br>\n  Framer Input<br>\n  <br>\n</h1>\n<br>"
  },
  {
    "path": "keyboard/Keyboard.framer/app.coffee",
    "chars": 6845,
    "preview": "# Require input module\n{InputLayer} = require \"input\"\n\n# Wrap input layer\ninput = InputLayer.wrap(bg, text)\n\n# Keyboard "
  },
  {
    "path": "keyboard/Keyboard.framer/framer/config.json",
    "chars": 518,
    "preview": "{\n  \"orientation\" : 0,\n  \"updateDelay\" : 0.29999999999999999,\n  \"designModeSelected\" : 0,\n  \"cachedDeviceHeight\" : 667,\n"
  },
  {
    "path": "keyboard/Keyboard.framer/framer/design.vekter",
    "chars": 587708,
    "preview": "{\n  \"root\" : {\n    \"__class\" : \"CanvasNode\",\n    \"children\" : [\n      {\n        \"__class\" : \"FrameNode\",\n        \"childr"
  },
  {
    "path": "keyboard/Keyboard.framer/framer/framer.js",
    "chars": 609059,
    "preview": "!function(modules){function __webpack_require__(moduleId){if(installedModules[moduleId])return installedModules[moduleId"
  },
  {
    "path": "keyboard/Keyboard.framer/framer/framer.js.map",
    "chars": 2958372,
    "preview": "{\"version\":3,\"sources\":[\"webpack:///build/framer.js\",\"webpack:///webpack/bootstrap 49fd57ca0575a8af2c5f\",\"webpack:///./f"
  },
  {
    "path": "keyboard/Keyboard.framer/framer/framer.vekter.js",
    "chars": 104447,
    "preview": "(function(scope) {var __layer_0__ = new Layer({\"height\":667,\"name\":\"Resource\",\"constraintValues\":{\"left\":950,\"height\":66"
  },
  {
    "path": "keyboard/Keyboard.framer/framer/version",
    "chars": 2,
    "preview": "11"
  },
  {
    "path": "keyboard/Keyboard.framer/modules/input.coffee",
    "chars": 7663,
    "preview": "Events.EnterKey = \"EnterKey\"\nEvents.SpaceKey = \"SpaceKey\"\nEvents.BackspaceKey = \"BackspaceKey\"\nEvents.CapsLockKey = \"Cap"
  },
  {
    "path": "scripts/rm-unused-images.sh",
    "chars": 338,
    "preview": "#!/bin/bash\n\nfunction rm_unused_images {\n\tcat framer/design.vekter | grep '\"image\"' | tr -s ' ' | cut -d' ' -f4 | cut -c"
  },
  {
    "path": "src/input.coffee",
    "chars": 7663,
    "preview": "Events.EnterKey = \"EnterKey\"\nEvents.SpaceKey = \"SpaceKey\"\nEvents.BackspaceKey = \"BackspaceKey\"\nEvents.CapsLockKey = \"Cap"
  }
]

About this extraction

This page contains the full source code of the benjamindenboer/FramerInput GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 13 files (4.1 MB), approximately 1.1M tokens, and a symbol index with 639 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!