setupin 2.5.0-beta.2 → 2.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -4
- package/README.zh-CN.md +15 -2
- package/dist/main.js +65 -61
- package/dist/main.prod.js +63 -61
- package/package.json +3 -4
- package/doc/logo.svg +0 -18
- package/doc/setup.vue.svg +0 -1
- package/doc/setupin.html.svg +0 -1
package/README.md
CHANGED
|
@@ -29,20 +29,33 @@
|
|
|
29
29
|
|
|
30
30
|
How about that? Aren't they similar
|
|
31
31
|
|
|
32
|
-
##
|
|
32
|
+
## 🤓 Characteristics
|
|
33
|
+
|
|
34
|
+
[x] auto on-demand import
|
|
35
|
+
[x] supports esm syntax
|
|
36
|
+
[x] [top-level await](https://vuejs.org/api/sfc-script-setup.html#top-level-await)
|
|
37
|
+
[ ] [sfc css features](https://vuejs.org/api/sfc-css-features.html)
|
|
38
|
+
[ ] vue3 macro functions
|
|
39
|
+
|
|
40
|
+
## 😝 Playground
|
|
33
41
|
|
|
34
42
|
try it on
|
|
35
43
|
[stackblitz](https://stackblitz.com/edit/setupin?file=index.html)
|
|
36
44
|
!
|
|
37
45
|
|
|
38
|
-
## 🥰
|
|
46
|
+
## 🥰 Usage
|
|
39
47
|
|
|
48
|
+
**The default is the dev version**
|
|
40
49
|
```html
|
|
41
50
|
<script src="https://unpkg.com/setupin"></script>
|
|
42
51
|
```
|
|
43
52
|
|
|
44
|
-
**
|
|
53
|
+
**dev**
|
|
54
|
+
```html
|
|
55
|
+
<script src="https://unpkg.com/setupin/dist/main.js"></script>
|
|
56
|
+
```
|
|
45
57
|
|
|
58
|
+
**prod**
|
|
46
59
|
```html
|
|
47
|
-
<script src="https://
|
|
60
|
+
<script src="https://unpkg.com/setupin/dist/main.prod.js"></script>
|
|
48
61
|
```
|
package/README.zh-CN.md
CHANGED
|
@@ -29,6 +29,14 @@
|
|
|
29
29
|
|
|
30
30
|
怎么样, 它们很像吧。
|
|
31
31
|
|
|
32
|
+
## 🤓 特性
|
|
33
|
+
|
|
34
|
+
[x] 自动按需导入
|
|
35
|
+
[x] 支持 esm 语法
|
|
36
|
+
[x] [顶层 await](https://cn.vuejs.org/api/sfc-script-setup.html#top-level-await)
|
|
37
|
+
[ ] [CSS 功能](https://cn.vuejs.org/api/sfc-css-features)
|
|
38
|
+
[ ] vue3 宏函数
|
|
39
|
+
|
|
32
40
|
## 😝 演练场
|
|
33
41
|
|
|
34
42
|
在 [stackblitz](https://stackblitz.com/edit/setupin?file=index.html)
|
|
@@ -36,12 +44,17 @@
|
|
|
36
44
|
|
|
37
45
|
## 🥰 CDN
|
|
38
46
|
|
|
47
|
+
**默认为dev版本**
|
|
39
48
|
```html
|
|
40
49
|
<script src="https://unpkg.com/setupin"></script>
|
|
41
50
|
```
|
|
42
51
|
|
|
43
|
-
**
|
|
52
|
+
**dev**
|
|
53
|
+
```html
|
|
54
|
+
<script src="https://unpkg.com/setupin/dist/main.js"></script>
|
|
55
|
+
```
|
|
44
56
|
|
|
57
|
+
**prod**
|
|
45
58
|
```html
|
|
46
|
-
<script src="https://
|
|
59
|
+
<script src="https://unpkg.com/setupin/dist/main.prod.js"></script>
|
|
47
60
|
```
|
package/dist/main.js
CHANGED
|
@@ -1,53 +1,6 @@
|
|
|
1
1
|
(function () {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
function discover(onPrior, onAfter) {
|
|
5
|
-
return new Promise((resolve) => {
|
|
6
|
-
const discovery = /* @__PURE__ */ Object.create(null);
|
|
7
|
-
const observer = new MutationObserver((mutations) => {
|
|
8
|
-
for (const mutation of mutations) {
|
|
9
|
-
mutation.addedNodes.forEach((node) => {
|
|
10
|
-
node instanceof Element && onPrior({ node, discovery, announce });
|
|
11
|
-
});
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
|
-
observer.observe(document, {
|
|
15
|
-
childList: true,
|
|
16
|
-
subtree: true
|
|
17
|
-
});
|
|
18
|
-
document.addEventListener("DOMContentLoaded", () => {
|
|
19
|
-
onAfter?.({ discovery, announce });
|
|
20
|
-
announce();
|
|
21
|
-
});
|
|
22
|
-
function announce() {
|
|
23
|
-
resolve(discovery);
|
|
24
|
-
observer.disconnect();
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
function isElMatch(el, targetHtml) {
|
|
30
|
-
try {
|
|
31
|
-
const parse = new DOMParser();
|
|
32
|
-
const aimEl = parse.parseFromString(`<body>${targetHtml}</body>`, "text/html").body.firstElementChild;
|
|
33
|
-
const isTag = aimEl?.tagName === el.tagName;
|
|
34
|
-
const nodeAttrs = el.getAttributeNames();
|
|
35
|
-
const aimAttrs = aimEl?.getAttributeNames() ?? [];
|
|
36
|
-
const hasAttr = new Set(aimAttrs).isSubsetOf(new Set(nodeAttrs));
|
|
37
|
-
return isTag && hasAttr;
|
|
38
|
-
} catch {
|
|
39
|
-
return false;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
function when(gist, verifyer = gist) {
|
|
44
|
-
return function(classify) {
|
|
45
|
-
const sym = Object.getOwnPropertySymbols(classify).find((sym2) => sym2.description === "default");
|
|
46
|
-
const handler = classify[verifyer] ?? (sym && classify[sym]);
|
|
47
|
-
return handler?.(gist);
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
4
|
var lib = {};
|
|
52
5
|
|
|
53
6
|
Object.defineProperty(lib, '__esModule', {
|
|
@@ -14081,6 +14034,53 @@
|
|
|
14081
14034
|
};
|
|
14082
14035
|
}
|
|
14083
14036
|
|
|
14037
|
+
function discover(onPrior, onAfter) {
|
|
14038
|
+
return new Promise((resolve) => {
|
|
14039
|
+
const discovery = /* @__PURE__ */ Object.create(null);
|
|
14040
|
+
const observer = new MutationObserver((mutations) => {
|
|
14041
|
+
for (const mutation of mutations) {
|
|
14042
|
+
mutation.addedNodes.forEach((node) => {
|
|
14043
|
+
node instanceof Element && onPrior({ node, discovery, announce });
|
|
14044
|
+
});
|
|
14045
|
+
}
|
|
14046
|
+
});
|
|
14047
|
+
observer.observe(document, {
|
|
14048
|
+
childList: true,
|
|
14049
|
+
subtree: true
|
|
14050
|
+
});
|
|
14051
|
+
document.addEventListener("DOMContentLoaded", () => {
|
|
14052
|
+
onAfter?.({ discovery, announce });
|
|
14053
|
+
announce();
|
|
14054
|
+
});
|
|
14055
|
+
function announce() {
|
|
14056
|
+
resolve(discovery);
|
|
14057
|
+
observer.disconnect();
|
|
14058
|
+
}
|
|
14059
|
+
});
|
|
14060
|
+
}
|
|
14061
|
+
|
|
14062
|
+
function isElMatch(el, targetHtml) {
|
|
14063
|
+
try {
|
|
14064
|
+
const parse = new DOMParser();
|
|
14065
|
+
const aimEl = parse.parseFromString(`<body>${targetHtml}</body>`, "text/html").body.firstElementChild;
|
|
14066
|
+
const isTag = aimEl?.tagName === el.tagName;
|
|
14067
|
+
const nodeAttrs = el.getAttributeNames();
|
|
14068
|
+
const aimAttrs = aimEl?.getAttributeNames() ?? [];
|
|
14069
|
+
const hasAttr = new Set(aimAttrs).isSubsetOf(new Set(nodeAttrs));
|
|
14070
|
+
return isTag && hasAttr;
|
|
14071
|
+
} catch {
|
|
14072
|
+
return false;
|
|
14073
|
+
}
|
|
14074
|
+
}
|
|
14075
|
+
|
|
14076
|
+
function when(gist, verifyer = gist) {
|
|
14077
|
+
return function(classify) {
|
|
14078
|
+
const sym = Object.getOwnPropertySymbols(classify).find((sym2) => sym2.description === "default");
|
|
14079
|
+
const handler = classify[verifyer] ?? (sym && classify[sym]);
|
|
14080
|
+
return handler?.(gist);
|
|
14081
|
+
};
|
|
14082
|
+
}
|
|
14083
|
+
|
|
14084
14084
|
function getGlobalVars(astBody) {
|
|
14085
14085
|
return astBody.flatMap((node) => when(node, node.type)({
|
|
14086
14086
|
FunctionDeclaration: ({ id }) => id ? [id.name] : [],
|
|
@@ -14123,13 +14123,13 @@
|
|
|
14123
14123
|
}
|
|
14124
14124
|
|
|
14125
14125
|
function parseScript(scriptEl) {
|
|
14126
|
-
const scriptContent = scriptEl?.
|
|
14126
|
+
const scriptContent = scriptEl?.innerHTML ?? "";
|
|
14127
14127
|
when(scriptEl?.tagName ?? 0)({
|
|
14128
14128
|
0: () => {
|
|
14129
14129
|
scriptEl = document.createElement("script");
|
|
14130
14130
|
document.head.appendChild(scriptEl);
|
|
14131
14131
|
},
|
|
14132
|
-
SCRIPT: () => scriptEl.
|
|
14132
|
+
SCRIPT: () => scriptEl.innerHTML = ""
|
|
14133
14133
|
});
|
|
14134
14134
|
scriptEl.type = "module";
|
|
14135
14135
|
const { extractImport, getGlobalVars, isAsyncModule } = ast(scriptContent);
|
|
@@ -14188,14 +14188,14 @@
|
|
|
14188
14188
|
[tagTemplate.str]: newCarrier(0, null)
|
|
14189
14189
|
};
|
|
14190
14190
|
|
|
14191
|
-
var state = /* @__PURE__ */ ((state2) => {
|
|
14192
|
-
state2[state2["WITHOUT"] = 0] = "WITHOUT";
|
|
14193
|
-
state2[state2["RELATE"] = 1] = "RELATE";
|
|
14194
|
-
state2[state2["CORRECT"] = 2] = "CORRECT";
|
|
14195
|
-
return state2;
|
|
14196
|
-
})(state || {});
|
|
14197
|
-
const { WITHOUT, RELATE, CORRECT } = state;
|
|
14198
14191
|
const onPrior = ({ node, discovery }) => {
|
|
14192
|
+
let state;
|
|
14193
|
+
((state2) => {
|
|
14194
|
+
state2[state2["WITHOUT"] = 0] = "WITHOUT";
|
|
14195
|
+
state2[state2["RELATE"] = 1] = "RELATE";
|
|
14196
|
+
state2[state2["CORRECT"] = 2] = "CORRECT";
|
|
14197
|
+
})(state || (state = {}));
|
|
14198
|
+
const { WITHOUT, RELATE, CORRECT } = state;
|
|
14199
14199
|
Object.assign(discovery, carrier);
|
|
14200
14200
|
function _getState(tag) {
|
|
14201
14201
|
if (!isElMatch(node, tag)) return WITHOUT;
|
|
@@ -14216,6 +14216,8 @@
|
|
|
14216
14216
|
behavior[tagScript.str].beNoHere(node);
|
|
14217
14217
|
};
|
|
14218
14218
|
|
|
14219
|
+
const asciiLogoRaw = "/***************************************\r\n** _ _ **\r\n** ___ ___| |_ _ _ _ __ (_)_ __ **\r\n** / __|/ _ \\ __| | | | '_ \\| | '_ \\ **\r\n** \\__ \\ __/ |_| |_| | |_) | | | | | **\r\n** |___/\\___|\\__|\\__,_| .__/|_|_| |_| **\r\n** |_| **\r\n****************************************/\r\n";
|
|
14220
|
+
|
|
14219
14221
|
/**
|
|
14220
14222
|
* vue v3.5.12
|
|
14221
14223
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
@@ -32547,21 +32549,23 @@ ${codeFrame}` : message);
|
|
|
32547
32549
|
withScopeId
|
|
32548
32550
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
32549
32551
|
|
|
32550
|
-
function generate(
|
|
32551
|
-
|
|
32552
|
+
function generate(context) {
|
|
32553
|
+
const asciiLogo = asciiLogoRaw ;
|
|
32552
32554
|
const demandRex = new RegExp(`\\b${Object.keys(window.Vue = Vue).join("\\b|\\b")}\\b`, "g");
|
|
32553
|
-
const {
|
|
32555
|
+
const { importsCode, setupCode, retNames, isAsync } = context;
|
|
32554
32556
|
const async = isAsync ? "async" : "";
|
|
32555
32557
|
const appComp = `{template:document.body.innerHTML,${async} setup(){${setupCode}return{${retNames}}}}`;
|
|
32556
32558
|
const suspenseComp = `{components:{c:${appComp}},template:'<Suspense><c/></Suspense>'}`;
|
|
32557
32559
|
const createApp = `createApp(${isAsync ? suspenseComp : appComp}).mount(document.body);`;
|
|
32558
32560
|
const autoImport = `const {createApp,${[...new Set(setupCode.match(demandRex))]}}=Vue;`;
|
|
32559
|
-
|
|
32561
|
+
return asciiLogo + importsCode + autoImport + createApp;
|
|
32560
32562
|
}
|
|
32561
32563
|
|
|
32562
32564
|
(async () => {
|
|
32563
32565
|
const discovery = await discover(onPrior, onAfter);
|
|
32564
|
-
|
|
32566
|
+
document.body.innerHTML = discovery[tagTemplate.str].parsed;
|
|
32567
|
+
const { scriptEl, ...context } = discovery[tagScript.str].parsed;
|
|
32568
|
+
scriptEl.innerHTML = generate(context);
|
|
32565
32569
|
})();
|
|
32566
32570
|
|
|
32567
32571
|
})();
|
package/dist/main.prod.js
CHANGED
|
@@ -1,53 +1,6 @@
|
|
|
1
1
|
(function () {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
function discover(onPrior, onAfter) {
|
|
5
|
-
return new Promise((resolve) => {
|
|
6
|
-
const discovery = /* @__PURE__ */ Object.create(null);
|
|
7
|
-
const observer = new MutationObserver((mutations) => {
|
|
8
|
-
for (const mutation of mutations) {
|
|
9
|
-
mutation.addedNodes.forEach((node) => {
|
|
10
|
-
node instanceof Element && onPrior({ node, discovery, announce });
|
|
11
|
-
});
|
|
12
|
-
}
|
|
13
|
-
});
|
|
14
|
-
observer.observe(document, {
|
|
15
|
-
childList: true,
|
|
16
|
-
subtree: true
|
|
17
|
-
});
|
|
18
|
-
document.addEventListener("DOMContentLoaded", () => {
|
|
19
|
-
onAfter?.({ discovery, announce });
|
|
20
|
-
announce();
|
|
21
|
-
});
|
|
22
|
-
function announce() {
|
|
23
|
-
resolve(discovery);
|
|
24
|
-
observer.disconnect();
|
|
25
|
-
}
|
|
26
|
-
});
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
function isElMatch(el, targetHtml) {
|
|
30
|
-
try {
|
|
31
|
-
const parse = new DOMParser();
|
|
32
|
-
const aimEl = parse.parseFromString(`<body>${targetHtml}</body>`, "text/html").body.firstElementChild;
|
|
33
|
-
const isTag = aimEl?.tagName === el.tagName;
|
|
34
|
-
const nodeAttrs = el.getAttributeNames();
|
|
35
|
-
const aimAttrs = aimEl?.getAttributeNames() ?? [];
|
|
36
|
-
const hasAttr = new Set(aimAttrs).isSubsetOf(new Set(nodeAttrs));
|
|
37
|
-
return isTag && hasAttr;
|
|
38
|
-
} catch {
|
|
39
|
-
return false;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
function when(gist, verifyer = gist) {
|
|
44
|
-
return function(classify) {
|
|
45
|
-
const sym = Object.getOwnPropertySymbols(classify).find((sym2) => sym2.description === "default");
|
|
46
|
-
const handler = classify[verifyer] ?? (sym && classify[sym]);
|
|
47
|
-
return handler?.(gist);
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
|
|
51
4
|
var lib = {};
|
|
52
5
|
|
|
53
6
|
Object.defineProperty(lib, '__esModule', {
|
|
@@ -14081,6 +14034,53 @@
|
|
|
14081
14034
|
};
|
|
14082
14035
|
}
|
|
14083
14036
|
|
|
14037
|
+
function discover(onPrior, onAfter) {
|
|
14038
|
+
return new Promise((resolve) => {
|
|
14039
|
+
const discovery = /* @__PURE__ */ Object.create(null);
|
|
14040
|
+
const observer = new MutationObserver((mutations) => {
|
|
14041
|
+
for (const mutation of mutations) {
|
|
14042
|
+
mutation.addedNodes.forEach((node) => {
|
|
14043
|
+
node instanceof Element && onPrior({ node, discovery, announce });
|
|
14044
|
+
});
|
|
14045
|
+
}
|
|
14046
|
+
});
|
|
14047
|
+
observer.observe(document, {
|
|
14048
|
+
childList: true,
|
|
14049
|
+
subtree: true
|
|
14050
|
+
});
|
|
14051
|
+
document.addEventListener("DOMContentLoaded", () => {
|
|
14052
|
+
onAfter?.({ discovery, announce });
|
|
14053
|
+
announce();
|
|
14054
|
+
});
|
|
14055
|
+
function announce() {
|
|
14056
|
+
resolve(discovery);
|
|
14057
|
+
observer.disconnect();
|
|
14058
|
+
}
|
|
14059
|
+
});
|
|
14060
|
+
}
|
|
14061
|
+
|
|
14062
|
+
function isElMatch(el, targetHtml) {
|
|
14063
|
+
try {
|
|
14064
|
+
const parse = new DOMParser();
|
|
14065
|
+
const aimEl = parse.parseFromString(`<body>${targetHtml}</body>`, "text/html").body.firstElementChild;
|
|
14066
|
+
const isTag = aimEl?.tagName === el.tagName;
|
|
14067
|
+
const nodeAttrs = el.getAttributeNames();
|
|
14068
|
+
const aimAttrs = aimEl?.getAttributeNames() ?? [];
|
|
14069
|
+
const hasAttr = new Set(aimAttrs).isSubsetOf(new Set(nodeAttrs));
|
|
14070
|
+
return isTag && hasAttr;
|
|
14071
|
+
} catch {
|
|
14072
|
+
return false;
|
|
14073
|
+
}
|
|
14074
|
+
}
|
|
14075
|
+
|
|
14076
|
+
function when(gist, verifyer = gist) {
|
|
14077
|
+
return function(classify) {
|
|
14078
|
+
const sym = Object.getOwnPropertySymbols(classify).find((sym2) => sym2.description === "default");
|
|
14079
|
+
const handler = classify[verifyer] ?? (sym && classify[sym]);
|
|
14080
|
+
return handler?.(gist);
|
|
14081
|
+
};
|
|
14082
|
+
}
|
|
14083
|
+
|
|
14084
14084
|
function getGlobalVars(astBody) {
|
|
14085
14085
|
return astBody.flatMap((node) => when(node, node.type)({
|
|
14086
14086
|
FunctionDeclaration: ({ id }) => id ? [id.name] : [],
|
|
@@ -14123,13 +14123,13 @@
|
|
|
14123
14123
|
}
|
|
14124
14124
|
|
|
14125
14125
|
function parseScript(scriptEl) {
|
|
14126
|
-
const scriptContent = scriptEl?.
|
|
14126
|
+
const scriptContent = scriptEl?.innerHTML ?? "";
|
|
14127
14127
|
when(scriptEl?.tagName ?? 0)({
|
|
14128
14128
|
0: () => {
|
|
14129
14129
|
scriptEl = document.createElement("script");
|
|
14130
14130
|
document.head.appendChild(scriptEl);
|
|
14131
14131
|
},
|
|
14132
|
-
SCRIPT: () => scriptEl.
|
|
14132
|
+
SCRIPT: () => scriptEl.innerHTML = ""
|
|
14133
14133
|
});
|
|
14134
14134
|
scriptEl.type = "module";
|
|
14135
14135
|
const { extractImport, getGlobalVars, isAsyncModule } = ast(scriptContent);
|
|
@@ -14188,14 +14188,14 @@
|
|
|
14188
14188
|
[tagTemplate.str]: newCarrier(0, null)
|
|
14189
14189
|
};
|
|
14190
14190
|
|
|
14191
|
-
var state = /* @__PURE__ */ ((state2) => {
|
|
14192
|
-
state2[state2["WITHOUT"] = 0] = "WITHOUT";
|
|
14193
|
-
state2[state2["RELATE"] = 1] = "RELATE";
|
|
14194
|
-
state2[state2["CORRECT"] = 2] = "CORRECT";
|
|
14195
|
-
return state2;
|
|
14196
|
-
})(state || {});
|
|
14197
|
-
const { WITHOUT, RELATE, CORRECT } = state;
|
|
14198
14191
|
const onPrior = ({ node, discovery }) => {
|
|
14192
|
+
let state;
|
|
14193
|
+
((state2) => {
|
|
14194
|
+
state2[state2["WITHOUT"] = 0] = "WITHOUT";
|
|
14195
|
+
state2[state2["RELATE"] = 1] = "RELATE";
|
|
14196
|
+
state2[state2["CORRECT"] = 2] = "CORRECT";
|
|
14197
|
+
})(state || (state = {}));
|
|
14198
|
+
const { WITHOUT, RELATE, CORRECT } = state;
|
|
14199
14199
|
Object.assign(discovery, carrier);
|
|
14200
14200
|
function _getState(tag) {
|
|
14201
14201
|
if (!isElMatch(node, tag)) return WITHOUT;
|
|
@@ -14399,21 +14399,23 @@
|
|
|
14399
14399
|
withScopeId: nm
|
|
14400
14400
|
}, Symbol.toStringTag, { value: 'Module' }));
|
|
14401
14401
|
|
|
14402
|
-
function generate(
|
|
14403
|
-
|
|
14402
|
+
function generate(context) {
|
|
14403
|
+
const asciiLogo = "";
|
|
14404
14404
|
const demandRex = new RegExp(`\\b${Object.keys(window.Vue = Vue).join("\\b|\\b")}\\b`, "g");
|
|
14405
|
-
const {
|
|
14405
|
+
const { importsCode, setupCode, retNames, isAsync } = context;
|
|
14406
14406
|
const async = isAsync ? "async" : "";
|
|
14407
14407
|
const appComp = `{template:document.body.innerHTML,${async} setup(){${setupCode}return{${retNames}}}}`;
|
|
14408
14408
|
const suspenseComp = `{components:{c:${appComp}},template:'<Suspense><c/></Suspense>'}`;
|
|
14409
14409
|
const createApp = `createApp(${isAsync ? suspenseComp : appComp}).mount(document.body);`;
|
|
14410
14410
|
const autoImport = `const {createApp,${[...new Set(setupCode.match(demandRex))]}}=Vue;`;
|
|
14411
|
-
|
|
14411
|
+
return asciiLogo + importsCode + autoImport + createApp;
|
|
14412
14412
|
}
|
|
14413
14413
|
|
|
14414
14414
|
(async () => {
|
|
14415
14415
|
const discovery = await discover(onPrior, onAfter);
|
|
14416
|
-
|
|
14416
|
+
document.body.innerHTML = discovery[tagTemplate.str].parsed;
|
|
14417
|
+
const { scriptEl, ...context } = discovery[tagScript.str].parsed;
|
|
14418
|
+
scriptEl.innerHTML = generate(context);
|
|
14417
14419
|
})();
|
|
14418
14420
|
|
|
14419
14421
|
})();
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "setupin",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "2.5.
|
|
4
|
+
"version": "2.5.1",
|
|
5
5
|
"description": "Vue SFC? HTML! <script setup> in html",
|
|
6
6
|
"author": "tofu-xx <tofu-xx@foxmail.com>",
|
|
7
7
|
"license": "MIT",
|
|
@@ -22,8 +22,7 @@
|
|
|
22
22
|
],
|
|
23
23
|
"main": "dist/main.js",
|
|
24
24
|
"files": [
|
|
25
|
-
"dist"
|
|
26
|
-
"doc"
|
|
25
|
+
"dist"
|
|
27
26
|
],
|
|
28
27
|
"publishConfig": {
|
|
29
28
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -34,7 +33,7 @@
|
|
|
34
33
|
"@antfu/ni": "^0.23.0",
|
|
35
34
|
"@babel/parser": "^7.26.2",
|
|
36
35
|
"@babel/types": "^7.26.0",
|
|
37
|
-
"@types/node": "^22.
|
|
36
|
+
"@types/node": "^22.9.0",
|
|
38
37
|
"bumpp": "^9.8.1",
|
|
39
38
|
"eslint": "^9.14.0",
|
|
40
39
|
"eslint-plugin-format": "^0.1.2",
|
package/doc/logo.svg
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="231" height="137.66">
|
|
2
|
-
<path
|
|
3
|
-
style="fill: #2b3d4f; stroke: none"
|
|
4
|
-
d="M25 41L25 99L58 99C62.5954 99 68.6309 97.9925 73 99.6034C78.1157 101.49 82.2455 107.245 86 111C95.2825 120.282 106.436 129.262 114 140L117 140C124.564 129.262 135.718 120.282 145 111C148.755 107.245 152.884 101.49 158 99.6034C162.369 97.9925 168.405 99 173 99L206 99L206 41L171 41C166.035 41 159.383 42.1639 155 39.3966C144.593 32.8268 135.694 20.6941 127 12C124.177 9.17657 119.429 2.28673 115 2.34567C110.546 2.40495 105.853 9.14688 103 12C94.3055 20.694 85.407 32.8267 75 39.3966C70.8239 42.033 64.7246 41 60 41L25 41z" />
|
|
5
|
-
<text fill="#21b899" x="58" y="80" font-family="'Comic Sans MS'" font-size="34">setupin</text>
|
|
6
|
-
<path
|
|
7
|
-
style="fill: #f2fbf9; stroke: none"
|
|
8
|
-
d="M115 7C104.443 17.557 91.5993 27.7923 83 40C86.4725 40 90.6915 40.6165 94 39.3966C101.585 36.5999 110.439 25.4748 115 19C121.119 25.1192 128.774 36.3637 137 39.3966C140.309 40.6165 144.528 40 148 40C143.546 33.6776 137.46 28.4599 132 23C126.54 17.5401 121.322 11.4536 115 7z" />
|
|
9
|
-
<path
|
|
10
|
-
style="fill: #21b899; stroke: none"
|
|
11
|
-
d="M97 40L134 40C131.415 34.4563 126.392 30.2125 122 26.0193C120.359 24.453 118.407 22.2053 116 21.9213C113.163 21.5866 110.838 24.2646 109 26.0193C104.608 30.2125 99.5852 34.4563 97 40z" />
|
|
12
|
-
<path
|
|
13
|
-
style="fill: #21b899; stroke: none"
|
|
14
|
-
d="M97 100C99.5852 105.544 104.608 109.787 109 113.981C110.838 115.735 113.163 118.413 116 118.079C118.804 117.748 121.125 114.834 123 112.995C127.208 108.869 131.603 104.822 135 100L97 100z" />
|
|
15
|
-
<path
|
|
16
|
-
style="fill: #f2fbf9; stroke: none"
|
|
17
|
-
d="M84 101C92.3411 112.841 104.761 122.761 115 133C120.952 128.807 125.86 123.14 131 118C136.46 112.54 142.546 107.322 147 101C143.527 101 139.309 100.384 136 101.603C128.696 104.296 120.386 114.773 116 121C110.137 115.137 102.89 104.512 95 101.603C91.6915 100.384 87.4725 101 84 101z" />
|
|
18
|
-
</svg>
|
package/doc/setup.vue.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="1236" height="818"><foreignObject x="0" y="0" width="100%" height="100%"><div class="sc-fUnMCh gEqWFc" xmlns="http://www.w3.org/1999/xhtml" style="block-size: 409px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; inline-size: 618px; min-inline-size: 100px; min-width: 100px; outline-color: rgb(201, 209, 217); padding-block: 20px; padding: 20px; padding-inline: 20px; perspective-origin: 309px 204.5px; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: left top; width: 1236px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); height: 818px; transform: scale(2);"><div class="sc-feUZmu iXnnhv" style="block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 5px; border-end-end-radius: 5px; border-end-start-radius: 5px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 5px; border-start-start-radius: 5px; inset: 0px; box-shadow: rgb(115, 115, 115) 0px 5px 20px 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; height: 369px; inline-size: 578px; inset-block: 0px; inset-inline: 0px; min-inline-size: 250px; min-width: 250px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 289px 184.5px; position: relative; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 289px 184.5px; width: 578px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="sc-fHjqPf LToMV" style="background-color: rgb(87, 181, 249); block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: 0px -3px 0px 576px; box-shadow: none; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); cursor: ew-resize; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; height: 369px; inline-size: 5px; inset-block: 0px; inset-inline: 576px -3px; min-inline-size: 0px; min-width: 0px; opacity: 0; outline-color: rgb(201, 209, 217); perspective-origin: 2.5px 184.5px; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 2.5px 184.5px; user-select: none; width: 5px; z-index: 999; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"></div><div class="cm-theme" style="block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-shadow: none; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; height: 369px; inline-size: 578px; inset-block: auto; inset-inline: auto; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); perspective-origin: 289px 184.5px; position: static; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 289px 184.5px; width: 578px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="cm-editor ͼ1 ͼ3 ͼ4 ͼ105 ͼ97 ͼ104 ͼpt" style="background-color: rgb(13, 17, 23); block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 5px; border-end-end-radius: 5px; border-end-start-radius: 5px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 5px; border-start-start-radius: 5px; inset: 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: flex; flex-direction: column; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 369px; inline-size: 578px; inset-block: 0px; inset-inline: 0px; outline-color: rgb(201, 209, 217); padding-block: 6px; padding: 6px; padding-inline: 6px; perspective-origin: 289px 184.5px; position: relative; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 289px 184.5px; width: 578px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="cm-panels cm-panels-top" style="background-color: rgba(0, 0, 0, 0); block-size: 24px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: 0px 0px auto; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); column-rule-color: rgb(255, 255, 255); display: block; flex-direction: row; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 24px; inline-size: 566px; inset-block: 0px auto; inset-inline: 0px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 283px 12px; position: sticky; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 283px 12px; width: 566px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"><div class="cm-panel" style="block-size: 24px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-inline-color: rgb(255, 255, 255); box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); column-rule-color: rgb(255, 255, 255); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 24px; inline-size: 566px; inset-block-start: auto; inset-inline: auto; left: auto; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(255, 255, 255); perspective-origin: 283px 12px; position: static; right: auto; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); top: auto; transform-origin: 283px 12px; width: 566px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"><div class="cm-panel-actions-macos" style="block-size: 24px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-inline-color: rgb(255, 255, 255); box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: 6px; column-rule-color: rgb(255, 255, 255); display: flex; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 24px; inline-size: 566px; outline-color: rgb(255, 255, 255); padding-block: 9px 3px; padding: 9px 5px 3px 9px; padding-inline: 9px 5px; perspective-origin: 283px 12px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 283px 12px; width: 566px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"><div class="exit" style="background-color: rgb(255, 95, 86); block-size: 12px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 50%; border-end-end-radius: 50%; border-end-start-radius: 50%; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 50%; border-start-start-radius: 50%; box-shadow: rgb(224, 68, 62) 0px 0px 1px 0px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: normal; column-rule-color: rgb(255, 255, 255); display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 12px; inline-size: 12px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 6px 6px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 6px 6px; width: 12px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"></div><div class="minimize" style="background-color: rgb(255, 189, 46); block-size: 12px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 50%; border-end-end-radius: 50%; border-end-start-radius: 50%; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 50%; border-start-start-radius: 50%; box-shadow: rgb(222, 161, 35) 0px 0px 1px 0px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: normal; column-rule-color: rgb(255, 255, 255); display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 12px; inline-size: 12px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 6px 6px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 6px 6px; width: 12px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"></div><div class="maximize" style="background-color: rgb(39, 201, 63); block-size: 12px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 50%; border-end-end-radius: 50%; border-end-start-radius: 50%; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 50%; border-start-start-radius: 50%; box-shadow: rgb(26, 171, 41) 0px 0px 1px 0px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: normal; column-rule-color: rgb(255, 255, 255); display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 12px; inline-size: 12px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 6px 6px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 6px 6px; width: 12px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"></div></div><input class="cm-panel-title-input" value="setup.vue" style="appearance: auto; background-color: rgba(0, 0, 0, 0); block-size: 31.6px; border-block: 0px none rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-style: none; border-width: 0px; border-inline: 0px none rgb(255, 255, 255); inset: 0px 0px -7.6px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); column-rule-color: rgb(255, 255, 255); cursor: text; display: block; font-family: Arial; font-size: 15px; height: 31.6px; inline-size: 566px; inset-block: 0px -7.6px; inset-inline: 0px; outline-color: rgb(255, 255, 255); overflow: clip; padding-block: 7px; padding: 7px 0px; padding-inline: 0px; perspective-origin: 283px 15.8px; position: absolute; text-align: center; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 283px 15.8px; unicode-bidi: normal; width: 566px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);" /></div></div><div class="cm-announced" aria-live="polite" style="background-color: rgba(0, 0, 0, 0); block-size: 20px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: -10000px 811.763px 10756px 610px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; flex-direction: row; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 20px; inline-size: 114.238px; inset-block: -10000px 10756px; inset-inline: 610px 811.763px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 57.1125px 10px; position: fixed; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 57.1188px 10px; width: 114.238px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div style="block-size: 20px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); inset: auto; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 20px; inline-size: 114.238px; inset-block: auto; inset-inline: auto; outline-color: rgb(201, 209, 217); perspective-origin: 57.1125px 10px; position: static; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 57.1188px 10px; width: 114.238px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);">Selection deleted</div></div><div tabindex="-1" class="cm-scroller" style="align-items: flex-start; background-color: rgba(0, 0, 0, 0); block-size: 333px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: flex; flex-direction: row; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 333px; inline-size: 566px; inset-block: 0px; inset-inline: 0px; line-height: 21px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(201, 209, 217); overflow: auto; padding-block: 5px; padding: 5px; padding-inline: 5px; perspective-origin: 283px 166.5px; position: relative; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 283px 166.5px; width: 566px; z-index: 0; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div spellcheck="false" autocorrect="off" autocapitalize="off" translate="no" contenteditable="true" style="tab-size: 4; align-items: normal; block-size: 323px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); inset: auto; box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; flex-grow: 2; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 323px; inline-size: 556px; inset-block: auto; inset-inline: auto; line-height: 21px; min-block-size: 100%; min-height: 100%; min-inline-size: auto; min-width: auto; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; overflow: visible; padding-block: 4px; padding: 4px 0px; padding-inline: 0px; perspective-origin: 278px 161.5px; position: static; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 161.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; z-index: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" class="cm-content cm-lineWrapping" role="textbox" aria-multiline="true" data-language="html" aria-autocomplete="list"><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">script</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">setup</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ9c" style="block-size: auto; border-block-color: rgb(255, 123, 114); border-color: rgb(255, 123, 114); border-inline-color: rgb(255, 123, 114); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(255, 123, 114); column-rule-color: rgb(255, 123, 114); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(255, 123, 114); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(255, 123, 114); text-emphasis-color: rgb(255, 123, 114); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 123, 114); -webkit-text-stroke-color: rgb(255, 123, 114); -webkit-user-modify: read-write;">import</span> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">{</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">ref</span> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">}</span> <span class="ͼ9c" style="block-size: auto; border-block-color: rgb(255, 123, 114); border-color: rgb(255, 123, 114); border-inline-color: rgb(255, 123, 114); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(255, 123, 114); column-rule-color: rgb(255, 123, 114); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(255, 123, 114); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(255, 123, 114); text-emphasis-color: rgb(255, 123, 114); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 123, 114); -webkit-text-stroke-color: rgb(255, 123, 114); -webkit-user-modify: read-write;">from</span> <span class="ͼ9d" style="block-size: auto; border-block-color: rgb(165, 214, 255); border-color: rgb(165, 214, 255); border-inline-color: rgb(165, 214, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(165, 214, 255); column-rule-color: rgb(165, 214, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(165, 214, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(165, 214, 255); text-emphasis-color: rgb(165, 214, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(165, 214, 255); -webkit-text-stroke-color: rgb(165, 214, 255); -webkit-user-modify: read-write;">'vue'</span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ9c" style="block-size: auto; border-block-color: rgb(255, 123, 114); border-color: rgb(255, 123, 114); border-inline-color: rgb(255, 123, 114); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(255, 123, 114); column-rule-color: rgb(255, 123, 114); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(255, 123, 114); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(255, 123, 114); text-emphasis-color: rgb(255, 123, 114); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 123, 114); -webkit-text-stroke-color: rgb(255, 123, 114); -webkit-user-modify: read-write;">const</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">msg</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">=</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">ref</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">(</span><span class="ͼ9d" style="block-size: auto; border-block-color: rgb(165, 214, 255); border-color: rgb(165, 214, 255); border-inline-color: rgb(165, 214, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(165, 214, 255); column-rule-color: rgb(165, 214, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(165, 214, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(165, 214, 255); text-emphasis-color: rgb(165, 214, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(165, 214, 255); -webkit-text-stroke-color: rgb(165, 214, 255); -webkit-user-modify: read-write;">'Hello Setupin!'</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">)</span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">script</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><br style="block-size: auto; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" /></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">template</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">h1</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span>{{ msg }}<span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">h1</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">template</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><br style="block-size: auto; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" /></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">style</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">h1</span> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">{</span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ9a" style="block-size: auto; border-block-color: rgb(210, 168, 255); border-color: rgb(210, 168, 255); border-inline-color: rgb(210, 168, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(210, 168, 255); column-rule-color: rgb(210, 168, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(210, 168, 255); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(210, 168, 255); text-emphasis-color: rgb(210, 168, 255); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(210, 168, 255); -webkit-text-stroke-color: rgb(210, 168, 255); -webkit-user-modify: read-write;">color</span>: <span class="ͼ9i" style="block-size: auto; border-block-color: rgb(255, 171, 112); border-color: rgb(255, 171, 112); border-inline-color: rgb(255, 171, 112); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(255, 171, 112); column-rule-color: rgb(255, 171, 112); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(255, 171, 112); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(255, 171, 112); text-emphasis-color: rgb(255, 171, 112); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 171, 112); -webkit-text-stroke-color: rgb(255, 171, 112); -webkit-user-modify: read-write;">pink</span>;</div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">}</span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">style</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-activeLine cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 556px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 278px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 278px 10.5px; white-space-collapse: break-spaces; width: 556px; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><br style="block-size: auto; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(201, 209, 217); overflow-wrap: anywhere; padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; unicode-bidi: normal; white-space-collapse: break-spaces; width: auto; word-break: break-word; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" /></div></div><div class="cm-layer cm-layer-above cm-cursorLayer" aria-hidden="true" style="z-index: 150; animation-duration: 1.2s; animation-name: cm-blink2; align-items: normal; block-size: 0px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); inset: 0px 566px 333px 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 0px; inline-size: 0px; inset-block: 0px 333px; inset-inline: 0px 566px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow: visible; padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 0px 0px; pointer-events: none; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; width: 0px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="cm-cursor cm-cursor-primary" style="animation-duration: 0s; animation-name: none; block-size: 17.6px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); border-inline-start-style: solid; border-inline-start-width: 0.8px; border-left-style: solid; border-left-width: 0.8px; inset: 304.6px auto auto 11px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: none; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 17.6px; inline-size: auto; inset-block: 304.6px auto; inset-inline: 11px auto; line-height: 21px; margin-inline-start: -0.6px; margin-left: -0.6px; outline-color: rgb(201, 209, 217); perspective-origin: 50% 50%; pointer-events: none; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 50% 50%; width: auto; z-index: auto; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"></div></div><div class="cm-layer cm-selectionLayer" aria-hidden="true" style="z-index: -2; align-items: normal; block-size: 0px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); inset: 0px 566px 333px 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 0px; inline-size: 0px; inset-block: 0px 333px; inset-inline: 0px 566px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow: visible; padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 0px 0px; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; width: 0px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"></div></div></div></div></div></div></foreignObject></svg>
|
package/doc/setupin.html.svg
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" width="1234" height="818"><foreignObject x="0" y="0" width="100%" height="100%"><div class="sc-fUnMCh gEqWFc" xmlns="http://www.w3.org/1999/xhtml" style="block-size: 409px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; inline-size: 617.35px; min-inline-size: 100px; min-width: 100px; outline-color: rgb(201, 209, 217); padding-block: 20px; padding: 20px; padding-inline: 20px; perspective-origin: 308.675px 204.5px; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: left top; width: 1234px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); height: 818px; transform: scale(2);"><div class="sc-feUZmu iXnnhv" style="block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 5px; border-end-end-radius: 5px; border-end-start-radius: 5px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 5px; border-start-start-radius: 5px; inset: 0px; box-shadow: rgb(115, 115, 115) 0px 5px 20px 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; height: 369px; inline-size: 577.35px; inset-block: 0px; inset-inline: 0px; min-inline-size: 250px; min-width: 250px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 288.675px 184.5px; position: relative; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 288.675px 184.5px; width: 577.35px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="sc-fHjqPf LToMV" style="background-color: rgb(87, 181, 249); block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: 0px -3px 0px 575.35px; box-shadow: none; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); cursor: ew-resize; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; height: 369px; inline-size: 5px; inset-block: 0px; inset-inline: 575.35px -3px; min-inline-size: 0px; min-width: 0px; opacity: 0; outline-color: rgb(201, 209, 217); perspective-origin: 2.5px 184.5px; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 2.5px 184.5px; user-select: none; width: 5px; z-index: 999; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"></div><div class="cm-theme" style="block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: auto; box-shadow: none; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; height: 369px; inline-size: 577.35px; inset-block: auto; inset-inline: auto; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); perspective-origin: 288.675px 184.5px; position: static; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 288.675px 184.5px; width: 577.35px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="cm-editor ͼ1 ͼ3 ͼ4 ͼrz ͼ97 ͼry ͼpt" style="background-color: rgb(13, 17, 23); block-size: 369px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 5px; border-end-end-radius: 5px; border-end-start-radius: 5px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 5px; border-start-start-radius: 5px; inset: 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: flex; flex-direction: column; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 369px; inline-size: 577.35px; inset-block: 0px; inset-inline: 0px; outline-color: rgb(201, 209, 217); padding-block: 6px; padding: 6px; padding-inline: 6px; perspective-origin: 288.675px 184.5px; position: relative; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 288.675px 184.5px; width: 577.35px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="cm-panels cm-panels-top" style="background-color: rgba(0, 0, 0, 0); block-size: 24px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: 0px 0px auto; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); column-rule-color: rgb(255, 255, 255); display: block; flex-direction: row; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 24px; inline-size: 565.35px; inset-block: 0px auto; inset-inline: 0px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 282.675px 12px; position: sticky; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 282.675px 12px; width: 565.35px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"><div class="cm-panel" style="block-size: 24px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-inline-color: rgb(255, 255, 255); box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); column-rule-color: rgb(255, 255, 255); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 24px; inline-size: 565.35px; inset-block-start: auto; inset-inline: auto; left: auto; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(255, 255, 255); perspective-origin: 282.675px 12px; position: static; right: auto; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); top: auto; transform-origin: 282.675px 12px; width: 565.35px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"><div class="cm-panel-actions-macos" style="block-size: 24px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-inline-color: rgb(255, 255, 255); box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: 6px; column-rule-color: rgb(255, 255, 255); display: flex; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 24px; inline-size: 565.35px; outline-color: rgb(255, 255, 255); padding-block: 9px 3px; padding: 9px 5px 3px 9px; padding-inline: 9px 5px; perspective-origin: 282.675px 12px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 282.675px 12px; width: 565.35px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"><div class="exit" style="background-color: rgb(255, 95, 86); block-size: 12px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 50%; border-end-end-radius: 50%; border-end-start-radius: 50%; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 50%; border-start-start-radius: 50%; box-shadow: rgb(224, 68, 62) 0px 0px 1px 0px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: normal; column-rule-color: rgb(255, 255, 255); display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 12px; inline-size: 12px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 6px 6px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 6px 6px; width: 12px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"></div><div class="minimize" style="background-color: rgb(255, 189, 46); block-size: 12px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 50%; border-end-end-radius: 50%; border-end-start-radius: 50%; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 50%; border-start-start-radius: 50%; box-shadow: rgb(222, 161, 35) 0px 0px 1px 0px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: normal; column-rule-color: rgb(255, 255, 255); display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 12px; inline-size: 12px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 6px 6px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 6px 6px; width: 12px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"></div><div class="maximize" style="background-color: rgb(39, 201, 63); block-size: 12px; border-block-color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-radius: 50%; border-end-end-radius: 50%; border-end-start-radius: 50%; border-inline-color: rgb(255, 255, 255); border-start-end-radius: 50%; border-start-start-radius: 50%; box-shadow: rgb(26, 171, 41) 0px 0px 1px 0px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); gap: normal; column-rule-color: rgb(255, 255, 255); display: block; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 12px; inline-size: 12px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(255, 255, 255); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 6px 6px; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 6px 6px; width: 12px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);"></div></div><input class="cm-panel-title-input" value="setupin.html" style="appearance: auto; background-color: rgba(0, 0, 0, 0); block-size: 31.6px; border-block: 0px none rgb(255, 255, 255); border-color: rgb(255, 255, 255); border-style: none; border-width: 0px; border-inline: 0px none rgb(255, 255, 255); inset: 0px 0px -7.6px; box-sizing: border-box; caret-color: rgb(255, 255, 255); color: rgb(255, 255, 255); column-rule-color: rgb(255, 255, 255); cursor: text; display: block; font-family: Arial; font-size: 15px; height: 31.6px; inline-size: 565.35px; inset-block: 0px -7.6px; inset-inline: 0px; outline-color: rgb(255, 255, 255); overflow: clip; padding-block: 7px; padding: 7px 0px; padding-inline: 0px; perspective-origin: 282.675px 15.8px; position: absolute; text-align: center; text-decoration: none solid rgb(255, 255, 255); text-emphasis-color: rgb(255, 255, 255); transform-origin: 282.675px 15.8px; unicode-bidi: normal; width: 565.35px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 255, 255); -webkit-text-stroke-color: rgb(255, 255, 255);" /></div></div><div class="cm-announced" aria-live="polite" style="background-color: rgba(0, 0, 0, 0); block-size: 0px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: -10000px 925.675px 10776px 610.325px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; flex-direction: row; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif; font-size: 15px; height: 0px; inline-size: 0px; inset-block: -10000px 10776px; inset-inline: 610.325px 925.675px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 0px 0px; position: fixed; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; width: 0px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"></div><div tabindex="-1" class="cm-scroller" style="align-items: flex-start; background-color: rgba(0, 0, 0, 0); block-size: 333px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-radius: 0px; border-end-end-radius: 0px; border-end-start-radius: 0px; border-inline-color: rgb(201, 209, 217); border-start-end-radius: 0px; border-start-start-radius: 0px; inset: 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: flex; flex-direction: row; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 333px; inline-size: 565.35px; inset-block: 0px; inset-inline: 0px; line-height: 21px; min-block-size: auto; min-height: auto; min-inline-size: auto; min-width: auto; outline-color: rgb(201, 209, 217); overflow: auto; padding-block: 5px; padding: 5px; padding-inline: 5px; perspective-origin: 282.675px 166.5px; position: relative; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 282.675px 166.5px; width: 565.35px; z-index: 0; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div spellcheck="false" autocorrect="off" autocapitalize="off" translate="no" contenteditable="true" style="tab-size: 4; align-items: normal; block-size: 323px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); inset: auto; box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; flex-grow: 2; flex-shrink: 0; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 323px; inline-size: 555.35px; inset-block: auto; inset-inline: auto; line-height: 21px; min-block-size: 100%; min-height: 100%; min-inline-size: auto; min-width: auto; outline-color: rgb(201, 209, 217); overflow: visible; padding-block: 4px; padding: 4px 0px; padding-inline: 0px; perspective-origin: 277.675px 161.5px; position: static; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 161.5px; width: 555.35px; z-index: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" class="cm-content" role="textbox" aria-multiline="true" data-language="html" aria-autocomplete="list"><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">script</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">src</span><span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">=</span><span class="ͼ9d" style="block-size: auto; border-block-color: rgb(165, 214, 255); border-color: rgb(165, 214, 255); border-inline-color: rgb(165, 214, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(165, 214, 255); column-rule-color: rgb(165, 214, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(165, 214, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(165, 214, 255); text-emphasis-color: rgb(165, 214, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(165, 214, 255); -webkit-text-stroke-color: rgb(165, 214, 255); -webkit-user-modify: read-write;">"https://unpkg.com/setupin"</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">script</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-activeLine cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><br style="block-size: auto; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(201, 209, 217); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" /></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">script</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">setup</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ9c" style="block-size: auto; border-block-color: rgb(255, 123, 114); border-color: rgb(255, 123, 114); border-inline-color: rgb(255, 123, 114); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(255, 123, 114); column-rule-color: rgb(255, 123, 114); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(255, 123, 114); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(255, 123, 114); text-emphasis-color: rgb(255, 123, 114); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 123, 114); -webkit-text-stroke-color: rgb(255, 123, 114); -webkit-user-modify: read-write;">const</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">msg</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">=</span> <span class="ͼ9b" style="block-size: auto; border-block-color: rgb(121, 192, 255); border-color: rgb(121, 192, 255); border-inline-color: rgb(121, 192, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(121, 192, 255); column-rule-color: rgb(121, 192, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(121, 192, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(121, 192, 255); text-emphasis-color: rgb(121, 192, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(121, 192, 255); -webkit-text-stroke-color: rgb(121, 192, 255); -webkit-user-modify: read-write;">ref</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">(</span><span class="ͼ9d" style="block-size: auto; border-block-color: rgb(165, 214, 255); border-color: rgb(165, 214, 255); border-inline-color: rgb(165, 214, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(165, 214, 255); column-rule-color: rgb(165, 214, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(165, 214, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(165, 214, 255); text-emphasis-color: rgb(165, 214, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(165, 214, 255); -webkit-text-stroke-color: rgb(165, 214, 255); -webkit-user-modify: read-write;">'Hello Setupin!'</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">)</span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">script</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><br style="block-size: auto; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(201, 209, 217); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" /></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">template</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">h1</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span>{{ msg }}<span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">h1</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">template</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><br style="block-size: auto; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(201, 209, 217); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;" /></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"><</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">style</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">h1</span> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">{</span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ9a" style="block-size: auto; border-block-color: rgb(210, 168, 255); border-color: rgb(210, 168, 255); border-inline-color: rgb(210, 168, 255); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(210, 168, 255); column-rule-color: rgb(210, 168, 255); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(210, 168, 255); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(210, 168, 255); text-emphasis-color: rgb(210, 168, 255); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(210, 168, 255); -webkit-text-stroke-color: rgb(210, 168, 255); -webkit-user-modify: read-write;">color</span>: <span class="ͼ9i" style="block-size: auto; border-block-color: rgb(255, 171, 112); border-color: rgb(255, 171, 112); border-inline-color: rgb(255, 171, 112); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(255, 171, 112); column-rule-color: rgb(255, 171, 112); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(255, 171, 112); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(255, 171, 112); text-emphasis-color: rgb(255, 171, 112); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(255, 171, 112); -webkit-text-stroke-color: rgb(255, 171, 112); -webkit-user-modify: read-write;">pink</span>;</div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"> <span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">}</span></div><div class="cm-line" style="block-size: 21px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); flex-grow: 0; flex-shrink: 1; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 21px; inline-size: 555.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); padding-block: 0px; padding: 0px 5px 0px 6px; padding-inline: 6px 5px; perspective-origin: 277.675px 10.5px; tab-size: 4; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); white-space: pre; transform-origin: 277.675px 10.5px; width: 555.35px; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217); -webkit-user-modify: read-write;"><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;"></</span><span class="ͼ98" style="block-size: auto; border-block-color: rgb(126, 231, 135); border-color: rgb(126, 231, 135); border-inline-color: rgb(126, 231, 135); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(126, 231, 135); column-rule-color: rgb(126, 231, 135); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(126, 231, 135); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(126, 231, 135); text-emphasis-color: rgb(126, 231, 135); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(126, 231, 135); -webkit-text-stroke-color: rgb(126, 231, 135); -webkit-user-modify: read-write;">style</span><span class="ͼ99" style="block-size: auto; border-block-color: rgb(139, 148, 158); border-color: rgb(139, 148, 158); border-inline-color: rgb(139, 148, 158); box-sizing: border-box; caret-color: rgba(0, 0, 0, 0); color: rgb(139, 148, 158); column-rule-color: rgb(139, 148, 158); display: inline; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: auto; inline-size: auto; line-height: 21px; outline-color: rgb(139, 148, 158); padding-inline: 0px; padding-left: 0px; padding-right: 0px; perspective-origin: 0px 0px; tab-size: 4; text-decoration: none solid rgb(139, 148, 158); text-emphasis-color: rgb(139, 148, 158); white-space: pre; transform-origin: 0px 0px; unicode-bidi: normal; width: auto; -webkit-font-smoothing: antialiased; -webkit-line-break: after-white-space; -webkit-locale: "en"; -webkit-text-fill-color: rgb(139, 148, 158); -webkit-text-stroke-color: rgb(139, 148, 158); -webkit-user-modify: read-write;">></span></div></div><div class="cm-layer cm-layer-above cm-cursorLayer" aria-hidden="true" style="z-index: 150; animation-duration: 1.2s; animation-name: cm-blink; align-items: normal; block-size: 0px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); inset: 0px 565.35px 333px 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 0px; inline-size: 0px; inset-block: 0px 333px; inset-inline: 0px 565.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow: visible; padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 0px 0px; pointer-events: none; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; width: 0px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"><div class="cm-cursor cm-cursor-primary" style="animation-duration: 0s; animation-name: none; block-size: 17.6px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); border-inline-start-style: solid; border-inline-start-width: 0.8px; border-left-style: solid; border-left-width: 0.8px; inset: 31.6px auto auto 11px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: none; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 17.6px; inline-size: auto; inset-block: 31.6px auto; inset-inline: 11px auto; line-height: 21px; margin-inline-start: -0.6px; margin-left: -0.6px; outline-color: rgb(201, 209, 217); perspective-origin: 50% 50%; pointer-events: none; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 50% 50%; width: auto; z-index: auto; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"></div></div><div class="cm-layer cm-selectionLayer" aria-hidden="true" style="z-index: -2; align-items: normal; block-size: 0px; border-block-color: rgb(201, 209, 217); border-color: rgb(201, 209, 217); border-inline-color: rgb(201, 209, 217); inset: 0px 565.35px 333px 0px; box-sizing: border-box; caret-color: rgb(201, 209, 217); color: rgb(201, 209, 217); column-rule-color: rgb(201, 209, 217); display: block; font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; font-size: 15px; height: 0px; inline-size: 0px; inset-block: 0px 333px; inset-inline: 0px 565.35px; line-height: 21px; min-block-size: 0px; min-height: 0px; min-inline-size: 0px; min-width: 0px; outline-color: rgb(201, 209, 217); overflow: visible; padding-block: 0px; padding: 0px; padding-inline: 0px; perspective-origin: 0px 0px; position: absolute; text-decoration: none solid rgb(201, 209, 217); text-emphasis-color: rgb(201, 209, 217); transform-origin: 0px 0px; width: 0px; -webkit-font-smoothing: antialiased; -webkit-locale: "en"; -webkit-text-fill-color: rgb(201, 209, 217); -webkit-text-stroke-color: rgb(201, 209, 217);"></div></div></div></div></div></div></foreignObject></svg>
|