diff --git a/.github/workflows/upload.yaml b/.github/workflows/upload.yaml index 34576f2..9006330 100644 --- a/.github/workflows/upload.yaml +++ b/.github/workflows/upload.yaml @@ -12,17 +12,22 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: - node-version: 20 - cache: 'yarn' + node-version: 24 + + - name: Enable Corepack and Yarn Berry + run: | + corepack enable + corepack prepare yarn@4.12.0 --activate + yarn --version - uses: calcit-lang/setup-cr@0.0.8 - name: "compiles to js" run: > - caps --ci && cr -1 js - && yarn && yarn vite build --base=./ + caps --ci && yarn install --immutable + && cr js && yarn vite build --base=./ - name: Deploy to server id: deploy diff --git a/.gitignore b/.gitignore index 4788c7a..c9fbd74 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,7 @@ node_modules/ dist/ .DS_Store + +.yarn/*.gz + +.calcit-snippets/* diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 0000000..3186f3f --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1 @@ +nodeLinker: node-modules diff --git a/Agents.md b/Agents.md new file mode 100644 index 0000000..710f61c --- /dev/null +++ b/Agents.md @@ -0,0 +1,38 @@ +Developer runs `cr js` to watch build JavaScript, and `yarn vite` to start a local server. LLMs edits program by running `cr` commands, and then triggers re-compiling. + +必须查看 Calcit 命令行工具的用法: + +```bash +cr docs agents --full +``` + +查看 Respo 模块的具体用法 + +```bash +cr libs readme respo.calcit -f docs/Respo-Agent.md +``` + +## LLM 执行效率优化(不重复 llms/Calcit.md) + +- **先定位再修改**:先读结构/需求,再做最小变更,避免“改一处→报错→补救”式迭代。 +- **缓存上下文**:记录你已经确认的定义位置与修改点,避免重复搜索相同目标。 +- **优先局部替换**:只替换目标节点或小段结构,避免整段重写导致结构漂移。 +- **拆分复杂改动**:把 UI 改动与逻辑改动拆开,减少单次变更影响面。 +- **尽量复用已有组件/样式**:优先扩展已有样式/组件,而不是新增并重复实现。 +- **检查生成代码风险点**:处理 `let`、map 结构、属性 map 的键值对等高风险结构时,先确认结构是否符合预期,再替换。 +- **利用 diff 控制范围**:在多次修改后随时对比 diff,避免无关变更积累。 +- **编译前自检**:对于复杂变更,先手动检查节点结构(比如嵌套列表、属性 map、函数参数形态)再编译。 +- **输出稳定性优先**:避免频繁调整格式或样式细节,优先保证逻辑稳定与可读性。 + +## 常见错误与正确做法(结合本项目实践) + +- **`let` 只保留最后一个表达式**:多个表达式需要包一层 `div`/`do`,否则前面的节点会被丢掉。 +- **属性 map 必须是成对键值**:避免把 `:style` 与 `:inner-text` 写在同一个 pair 内;每个属性单独成对。 +- **避免生成“可调用字符串”**:形如 `(<> ((str ...)))` 会变成调用结果,正确写法为 `<> $ str ...`。 +- **列表 vs set**:`keys` 返回 set,拼接前先 `.to-list`,再 `concat`。 +- **pairs 列表转 map**:不要用 `.to-map` 处理 list,改用 `pairs-map`。 +- **函数调用与变量区分**:`week-start` 这类变量必须 is-leaf,避免成为单元素 list 导致被当做“函数调用”。 +- **数值与单位风险**:CSS 属性如 `flex`, `font-weight`, `line-height`, `z-index` 若使用单纯数字,Respo 会自动拼接 `px` 单位。必须改为字符串形式,例如 `:flex "\"1"` 或 `:font-weight "\"300"`。 +- **结构化编辑优先**:严禁直接编辑 `compact.cirru`,必须使用 `cr tree replace` 或 `cr edit def` 等命令。建议先通过 `cr query search 'keyword' -f 'ns/def'` 精确获得 node 路径。 +- **性能优化准则**:对于动态生成的列表(如任务项),应将静态样式从内联 `:style` 提取到 `defstyle` 中,通过 `:class-name` 引用以提升虚拟 DOM 性能。 +- **排序逻辑翻转**:翻转列表排序应直接修改 `sort` 函数所用比较器的返回分支(如将 `if ret 1 -1` 翻转为 `if ret -1 1`)。 diff --git a/calcit.cirru b/calcit.cirru deleted file mode 100644 index d042ced..0000000 --- a/calcit.cirru +++ /dev/null @@ -1,5249 +0,0 @@ - -{} (:package |app) - :configs $ {} (:init-fn |app.main/main!) (:output |src) (:port 6001) (:reload-fn |app.main/reload!) (:storage-key |calcit.cirru) (:version |0.0.1) - :modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/ |alerts.calcit/ |respo-feather.calcit/ - :entries $ {} - :files $ {} - |app.comp.container $ %{} :FileEntry - :defs $ {} - |azure-key $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1650430372150) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650430372150) (:by |rJG4IHzWf) (:text |def) - |b $ %{} :Leaf (:at 1650430372150) (:by |rJG4IHzWf) (:text |azure-key) - |h $ %{} :Expr (:at 1650430423598) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650430424907) (:by |rJG4IHzWf) (:text |or) - |T $ %{} :Expr (:at 1650430373474) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650430428752) (:by |rJG4IHzWf) (:text |get-env) - |b $ %{} :Leaf (:at 1650430373474) (:by |rJG4IHzWf) (:text "|\"azure-key") - |b $ %{} :Expr (:at 1650430373474) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650430378849) (:by |rJG4IHzWf) (:text |js/localStorage.getItem) - |b $ %{} :Leaf (:at 1650430373474) (:by |rJG4IHzWf) (:text "|\"azure-key") - |comp-comment-list $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581229573261) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229575162) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581229573261) (:by |rJG4IHzWf) (:text |comp-comment-list) - |r $ %{} :Expr (:at 1581229573261) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229573261) (:by |rJG4IHzWf) (:text |router) - |j $ %{} :Leaf (:at 1581229573261) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Leaf (:at 1641649680290) (:by |rJG4IHzWf) (:text |highlighted) - |v $ %{} :Expr (:at 1581229725238) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581229726645) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581229726973) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581229727122) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229738574) (:by |rJG4IHzWf) (:text |coord) - |j $ %{} :Expr (:at 1581229730106) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229730690) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1581229731771) (:by |rJG4IHzWf) (:text |router) - |j $ %{} :Expr (:at 1581230121177) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230124331) (:by |rJG4IHzWf) (:text |topic) - |j $ %{} :Expr (:at 1581230124844) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230126945) (:by |rJG4IHzWf) (:text |get-in) - |j $ %{} :Leaf (:at 1581230128174) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581230128406) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230128593) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581230145658) (:by |rJG4IHzWf) (:text |:topics) - |r $ %{} :Expr (:at 1581230147203) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230147907) (:by |rJG4IHzWf) (:text |first) - |j $ %{} :Leaf (:at 1581230148801) (:by |rJG4IHzWf) (:text |coord) - |T $ %{} :Expr (:at 1581233279266) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581233283563) (:by |rJG4IHzWf) (:text |list->) - |L $ %{} :Expr (:at 1581233284107) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233284483) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549591172) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549595457) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666549597440) (:by |rJG4IHzWf) (:text |css/row) - |j $ %{} :Expr (:at 1581233641011) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233642539) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581233677062) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233677511) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581233677737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233679360) (:by |rJG4IHzWf) (:text |:height) - |j $ %{} :Leaf (:at 1581233680995) (:by |rJG4IHzWf) (:text "|\"100%") - |T $ %{} :Expr (:at 1581233286696) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628854637915) (:by |rJG4IHzWf) (:text |->) - |L $ %{} :Leaf (:at 1581233299733) (:by |rJG4IHzWf) (:text |coord) - |T $ %{} :Expr (:at 1581233357824) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581233424110) (:by |rJG4IHzWf) (:text |map-indexed) - |T $ %{} :Expr (:at 1581233301968) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581233302543) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1581233306423) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581233426566) (:by |rJG4IHzWf) (:text |idx) - |T $ %{} :Leaf (:at 1581233312925) (:by |rJG4IHzWf) (:text |parent-id) - |T $ %{} :Expr (:at 1581233345726) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581233348018) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Leaf (:at 1581233349840) (:by |rJG4IHzWf) (:text |parent-id) - |T $ %{} :Expr (:at 1581234083204) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581234085714) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581234086113) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581234086263) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234088269) (:by |rJG4IHzWf) (:text |kids) - |j $ %{} :Expr (:at 1581234225562) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581234228883) (:by |rJG4IHzWf) (:text |:kids) - |T $ %{} :Expr (:at 1581234160275) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581234161137) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581234163810) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852813104) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Leaf (:at 1628852813792) (:by |rJG4IHzWf) (:text |0) - |j $ %{} :Leaf (:at 1581234166226) (:by |rJG4IHzWf) (:text |idx) - |T $ %{} :Expr (:at 1581234233563) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |get-in) - |j $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581234233563) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |:topics) - |r $ %{} :Leaf (:at 1581234233563) (:by |rJG4IHzWf) (:text |parent-id) - |j $ %{} :Expr (:at 1581234238526) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |get-in) - |j $ %{} :Leaf (:at 1581234246670) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581234238526) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |:replies) - |r $ %{} :Leaf (:at 1581234238526) (:by |rJG4IHzWf) (:text |parent-id) - |T $ %{} :Expr (:at 1581233457588) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581233459051) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1581233459323) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233459720) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547251596) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547253303) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1666547272120) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547275766) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1666547256059) (:by |rJG4IHzWf) (:text |css/column) - |b $ %{} :Leaf (:at 1666547281936) (:by |rJG4IHzWf) (:text |css-comment-list) - |P $ %{} :Expr (:at 1581234113169) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581234114328) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581234114951) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852816305) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Leaf (:at 1628852816689) (:by |rJG4IHzWf) (:text |0) - |j $ %{} :Leaf (:at 1581234117925) (:by |rJG4IHzWf) (:text |idx) - |T $ %{} :Expr (:at 1581233488135) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237240514) (:by |rJG4IHzWf) (:text |comp-topic-parent) - |j $ %{} :Expr (:at 1581234193402) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |get-in) - |j $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581234193402) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581234193402) (:by |rJG4IHzWf) (:text |:topics) - |r $ %{} :Leaf (:at 1581234202780) (:by |rJG4IHzWf) (:text |parent-id) - |j $ %{} :Expr (:at 1581234120191) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236758249) (:by |rJG4IHzWf) (:text |comp-reply-parent) - |j $ %{} :Expr (:at 1581234205450) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234208081) (:by |rJG4IHzWf) (:text |get-in) - |j $ %{} :Leaf (:at 1581234252927) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581234210978) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581234211457) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581234215698) (:by |rJG4IHzWf) (:text |:replies) - |r $ %{} :Leaf (:at 1581234218562) (:by |rJG4IHzWf) (:text |parent-id) - |r $ %{} :Expr (:at 1587920827570) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587920828836) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1587920832014) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587920835430) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1587920872082) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |d!) - |j $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |:router) - |r $ %{} :Expr (:at 1587920872082) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1587920872082) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587920872082) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Expr (:at 1587920978821) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852851727) (:by |rJG4IHzWf) (:text |.slice) - |j $ %{} :Leaf (:at 1587920978821) (:by |rJG4IHzWf) (:text |coord) - |r $ %{} :Leaf (:at 1587920978821) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1587920978821) (:by |rJG4IHzWf) (:text |idx) - |T $ %{} :Expr (:at 1581231915551) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231918271) (:by |rJG4IHzWf) (:text |list->) - |j $ %{} :Expr (:at 1581231919289) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231919875) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549614811) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549616998) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666549618624) (:by |rJG4IHzWf) (:text |css/expand) - |j $ %{} :Expr (:at 1581236707858) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236708666) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581236727899) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581236728396) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1581236725797) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236725797) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1588437760476) (:by |rJG4IHzWf) (:text "|\"40px 4px 160px 4px") - |r $ %{} :Expr (:at 1581231920979) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854647778) (:by |rJG4IHzWf) (:text |->) - |f $ %{} :Leaf (:at 1581234093865) (:by |rJG4IHzWf) (:text |kids) - |l $ %{} :Expr (:at 1641647446540) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647448312) (:by |rJG4IHzWf) (:text |.to-list) - |r $ %{} :Expr (:at 1581231932680) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231934162) (:by |rJG4IHzWf) (:text |map) - |j $ %{} :Expr (:at 1581231934535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231934811) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1581231935075) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231938354) (:by |rJG4IHzWf) (:text |reply-id) - |r $ %{} :Expr (:at 1581231939231) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231939691) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581231941479) (:by |rJG4IHzWf) (:text |reply-id) - |r $ %{} :Expr (:at 1581231983040) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581231984585) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581231984864) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581231985005) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231985917) (:by |rJG4IHzWf) (:text |reply) - |j $ %{} :Expr (:at 1581231986661) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231987538) (:by |rJG4IHzWf) (:text |get-in) - |j $ %{} :Leaf (:at 1581231990976) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581231991297) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581231991571) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581231993418) (:by |rJG4IHzWf) (:text |:replies) - |r $ %{} :Leaf (:at 1581231995684) (:by |rJG4IHzWf) (:text |reply-id) - |b $ %{} :Expr (:at 1695485785412) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485785690) (:by |rJG4IHzWf) (:text |k) - |b $ %{} :Expr (:at 1695485786713) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485787211) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1695485792127) (:by |rJG4IHzWf) (:text |parent-id) - |e $ %{} :Leaf (:at 1695485801689) (:by |rJG4IHzWf) (:text "|\"+") - |h $ %{} :Leaf (:at 1695485793504) (:by |rJG4IHzWf) (:text |reply-id) - |T $ %{} :Expr (:at 1581232676170) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650960623199) (:by |rJG4IHzWf) (:text |memof1-call-by) - |L $ %{} :Leaf (:at 1695485804704) (:by |rJG4IHzWf) (:text |k) - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |comp-reply) - |j $ %{} :Leaf (:at 1581232677622) (:by |rJG4IHzWf) (:text |reply) - |p $ %{} :Expr (:at 1581254310378) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581254310378) (:by |rJG4IHzWf) (:text |contains?) - |j $ %{} :Expr (:at 1581254310378) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853017700) (:by |rJG4IHzWf) (:text |.to-set) - |j $ %{} :Leaf (:at 1581254310378) (:by |rJG4IHzWf) (:text |coord) - |r $ %{} :Leaf (:at 1581254310378) (:by |rJG4IHzWf) (:text |reply-id) - |t $ %{} :Expr (:at 1650953045238) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650953045990) (:by |rJG4IHzWf) (:text |if) - |T $ %{} :Expr (:at 1650953045013) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Expr (:at 1650953045013) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |first) - |b $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |highlighted) - |h $ %{} :Leaf (:at 1650953045013) (:by |rJG4IHzWf) (:text |reply-id) - |b $ %{} :Expr (:at 1650953049328) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650953049996) (:by |rJG4IHzWf) (:text |last) - |b $ %{} :Leaf (:at 1650953051734) (:by |rJG4IHzWf) (:text |highlighted) - |h $ %{} :Leaf (:at 1650953054186) (:by |rJG4IHzWf) (:text |nil) - |v $ %{} :Leaf (:at 1650960924891) (:by |rJG4IHzWf) (:text |idx) - |comp-container $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-container) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |reel) - |j $ %{} :Leaf (:at 1581174566449) (:by |rJG4IHzWf) (:text |resource) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |D $ %{} :Leaf (:at nil) (:by nil) (:text |let) - |L $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |store) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:store) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |reel) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |states) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:states) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |store) - |r $ %{} :Expr (:at 1581229562614) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229563586) (:by |rJG4IHzWf) (:text |router) - |j $ %{} :Expr (:at 1581229564113) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229566230) (:by |rJG4IHzWf) (:text |:router) - |j $ %{} :Leaf (:at 1581229569483) (:by |rJG4IHzWf) (:text |store) - |T $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |div) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |{}) - |b $ %{} :Expr (:at 1666546894460) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546896857) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1666546897267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546898902) (:by |rJG4IHzWf) (:text |str-spaced) - |b $ %{} :Leaf (:at 1666546903094) (:by |rJG4IHzWf) (:text |css/fullscreen) - |h $ %{} :Leaf (:at 1666546906111) (:by |rJG4IHzWf) (:text |css/global) - |l $ %{} :Leaf (:at 1666546908193) (:by |rJG4IHzWf) (:text |css/row) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:style) - |j $ %{} :Expr (:at 1581175546725) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175547086) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581175549287) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175553038) (:by |rJG4IHzWf) (:text |:overflow-x) - |j $ %{} :Leaf (:at 1581175554952) (:by |rJG4IHzWf) (:text |:auto) - |m $ %{} :Expr (:at 1581176234559) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |comp-topic-list) - |b $ %{} :Expr (:at 1587833021336) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1587833022319) (:by |rJG4IHzWf) (:text |>>) - |T $ %{} :Leaf (:at 1581235770020) (:by |rJG4IHzWf) (:text |states) - |j $ %{} :Leaf (:at 1587833023088) (:by |rJG4IHzWf) (:text |:topics) - |j $ %{} :Leaf (:at 1581176237106) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1588437320505) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437320505) (:by |rJG4IHzWf) (:text |first) - |j $ %{} :Expr (:at 1588437320505) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437320505) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1588437320505) (:by |rJG4IHzWf) (:text |router) - |n $ %{} :Expr (:at 1581699999985) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700001832) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1581700002229) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581700003310) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700004289) (:by |rJG4IHzWf) (:text |topic) - |j $ %{} :Expr (:at 1581700005477) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |get-in) - |j $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581700005477) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |:topics) - |r $ %{} :Expr (:at 1581700005477) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700005477) (:by |rJG4IHzWf) (:text |first) - |j $ %{} :Expr (:at 1581700061905) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700061905) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1581700061905) (:by |rJG4IHzWf) (:text |router) - |r $ %{} :Expr (:at 1581700789445) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |comp-frame) - |j $ %{} :Leaf (:at 1581700791612) (:by |rJG4IHzWf) (:text |topic) - |o $ %{} :Expr (:at 1581229545081) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229558461) (:by |rJG4IHzWf) (:text |comp-comment-list) - |b $ %{} :Leaf (:at 1581229571994) (:by |rJG4IHzWf) (:text |router) - |j $ %{} :Leaf (:at 1581229559655) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1641649667880) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641649669961) (:by |rJG4IHzWf) (:text |:highlighted) - |j $ %{} :Leaf (:at 1641649671650) (:by |rJG4IHzWf) (:text |store) - |p $ %{} :Expr (:at 1581235631497) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1591437686010) (:by |rJG4IHzWf) (:text |div) - |f $ %{} :Expr (:at 1591437686556) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1591437687215) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1591437689627) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1591437690408) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1591437690720) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1591437691103) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1591437691424) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1591437692835) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Leaf (:at 1591437752383) (:by |rJG4IHzWf) (:text "|\"80vw") - |pT $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"16px 16px") - |h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{}) - |h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |<>) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"HN Reader on GitHub") - |l $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{}) - |h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |a) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |12) - |h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:text-decoration) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:none) - |l $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"12px") - |o $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |h $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:target) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"_blank") - |l $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:inner-text) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"https://github.com/Memkits/hn-reader") - |o $ %{} :Expr (:at 1701536256554) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text |:href) - |b $ %{} :Leaf (:at 1701536256554) (:by |rJG4IHzWf) (:text "|\"https://github.com/Memkits/hn-reader") - |q $ %{} :Expr (:at 1581174631334) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174632041) (:by |rJG4IHzWf) (:text |when) - |j $ %{} :Leaf (:at 1581174633352) (:by |rJG4IHzWf) (:text |dev?) - |r $ %{} :Expr (:at 1581174633659) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174636170) (:by |rJG4IHzWf) (:text |comp-inspect) - |j $ %{} :Leaf (:at 1581235931878) (:by |rJG4IHzWf) (:text "|\"store") - |r $ %{} :Leaf (:at 1581235934190) (:by |rJG4IHzWf) (:text |store) - |v $ %{} :Expr (:at 1581176758058) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176759087) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581176759348) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176760977) (:by |rJG4IHzWf) (:text |:bottom) - |j $ %{} :Leaf (:at 1581176761528) (:by |rJG4IHzWf) (:text |0) - |x $ %{} :Expr (:at 1521954055333) (:by |root) - :data $ {} - |D $ %{} :Leaf (:at 1521954057510) (:by |root) (:text |when) - |L $ %{} :Leaf (:at 1521954059290) (:by |root) (:text |dev?) - |T $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |comp-reel) - |b $ %{} :Expr (:at 1587833027429) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1587833028168) (:by |rJG4IHzWf) (:text |>>) - |T $ %{} :Leaf (:at nil) (:by nil) (:text |states) - |j $ %{} :Leaf (:at 1587833029173) (:by |rJG4IHzWf) (:text |:reel) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |reel) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |{}) - |comp-frame $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700784695) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |comp-frame) - |n $ %{} :Expr (:at 1581700787013) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700787661) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1587834115018) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1587834115643) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Expr (:at 1587834117560) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834121581) (:by |rJG4IHzWf) (:text |effect-load) - |j $ %{} :Leaf (:at 1587834126072) (:by |rJG4IHzWf) (:text |topic) - |T $ %{} :Expr (:at 1581700854363) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581700856514) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1581700856850) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700857204) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549635661) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549638885) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1701538686820) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701538690517) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1666549665767) (:by |rJG4IHzWf) (:text |css/column) - |b $ %{} :Leaf (:at 1701538698316) (:by |rJG4IHzWf) (:text |style-iframe-container) - |P $ %{} :Expr (:at 1581700858165) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700859074) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581700859494) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700859877) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549646760) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549649110) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1701538662457) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701538666951) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1666549656705) (:by |rJG4IHzWf) (:text |css/row-parted) - |b $ %{} :Leaf (:at 1701538674026) (:by |rJG4IHzWf) (:text |style-address) - |r $ %{} :Expr (:at 1581700875160) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581701005897) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1581701006710) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581701008617) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1581701009108) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581701011838) (:by |rJG4IHzWf) (:text |:inner-text) - |T $ %{} :Expr (:at 1581700875901) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700876801) (:by |rJG4IHzWf) (:text |:url) - |j $ %{} :Leaf (:at 1581700879725) (:by |rJG4IHzWf) (:text |topic) - |j $ %{} :Expr (:at 1581701012408) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581701014611) (:by |rJG4IHzWf) (:text |:href) - |j $ %{} :Expr (:at 1581701015839) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581701017446) (:by |rJG4IHzWf) (:text |:url) - |j $ %{} :Leaf (:at 1581701018507) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1581701023426) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581701026993) (:by |rJG4IHzWf) (:text |:target) - |j $ %{} :Leaf (:at 1581701032349) (:by |rJG4IHzWf) (:text "|\"_blank") - |t $ %{} :Expr (:at 1581700875160) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431548845) (:by |rJG4IHzWf) (:text |span) - |j $ %{} :Expr (:at 1581701006710) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581701008617) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1581701009108) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581701011838) (:by |rJG4IHzWf) (:text |:inner-text) - |P $ %{} :Leaf (:at 1701538820555) (:by |rJG4IHzWf) (:text "|\"Full") - |X $ %{} :Expr (:at 1650431557019) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549675513) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666549677421) (:by |rJG4IHzWf) (:text |css/link) - |Z $ %{} :Expr (:at 1701538764039) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538766510) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1701538766783) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538767144) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701538767583) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538769203) (:by |rJG4IHzWf) (:text |:height) - |b $ %{} :Leaf (:at 1701538774441) (:by |rJG4IHzWf) (:text "|\"16px") - |b $ %{} :Expr (:at 1650431477043) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431480039) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1650431480773) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431481065) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1650431481369) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431481988) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1650431483933) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1650431484257) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431579954) (:by |rJG4IHzWf) (:text |js/document.body.requestFullscreen) - |j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |create-element) - |j $ %{} :Leaf (:at 1587834430343) (:by |rJG4IHzWf) (:text |:iframe) - |r $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549678953) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549682838) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666549686826) (:by |rJG4IHzWf) (:text |css/expand) - |j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |:border) - |j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |:none) - |p $ %{} :Expr (:at 1587834107543) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834108541) (:by |rJG4IHzWf) (:text |:id) - |j $ %{} :Leaf (:at 1587834110860) (:by |rJG4IHzWf) (:text "|\"frame") - |x $ %{} :Expr (:at 1582358016014) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1582358023165) (:by |rJG4IHzWf) (:text |:innerHTML) - |j $ %{} :Leaf (:at 1582358031293) (:by |rJG4IHzWf) (:text "|\"Not loaded.") - |v $ %{} :Expr (:at 1581700783170) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |span) - |j $ %{} :Leaf (:at 1581700783170) (:by |rJG4IHzWf) (:text |nil) - |comp-reply $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232665058) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |comp-reply) - |n $ %{} :Expr (:at 1581232666199) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232667995) (:by |rJG4IHzWf) (:text |reply) - |f $ %{} :Leaf (:at 1581240644795) (:by |rJG4IHzWf) (:text |selected?) - |l $ %{} :Leaf (:at 1650953122800) (:by |rJG4IHzWf) (:text |highlighted-idx) - |u $ %{} :Leaf (:at 1650960918507) (:by |rJG4IHzWf) (:text |idx) - |r $ %{} :Expr (:at 1695485685225) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1695485687040) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Expr (:at 1695485688245) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485717038) (:by |rJG4IHzWf) (:text |effect-height!) - |b $ %{} :Expr (:at 1695485697338) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485702209) (:by |rJG4IHzWf) (:text |some?) - |b $ %{} :Leaf (:at 1695485697338) (:by |rJG4IHzWf) (:text |reply) - |T $ %{} :Expr (:at 1581233562252) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581233562796) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1695487612928) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1695487613840) (:by |rJG4IHzWf) (:text |or) - |T $ %{} :Expr (:at 1581233563360) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695487547785) (:by |rJG4IHzWf) (:text |nil?) - |j $ %{} :Leaf (:at 1581233567425) (:by |rJG4IHzWf) (:text |reply) - |P $ %{} :Expr (:at 1581233568998) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233569368) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581233569566) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233569910) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1695320029464) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695320032589) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1695320040111) (:by |rJG4IHzWf) (:text |style-reply-empty) - |r $ %{} :Expr (:at 1581233570335) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233570708) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581235666432) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581235667123) (:by |rJG4IHzWf) (:text |str) - |T $ %{} :Leaf (:at 1581242047962) (:by |rJG4IHzWf) (:text "|\"Data from network") - |r $ %{} :Expr (:at 1581233580009) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581233580332) (:by |rJG4IHzWf) (:text |{}) - |v $ %{} :Expr (:at 1581237704536) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237706681) (:by |rJG4IHzWf) (:text |:font-family) - |j $ %{} :Leaf (:at 1581237710135) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |T $ %{} :Expr (:at 1581238319361) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581238323311) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581238323660) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581238323809) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581238326426) (:by |rJG4IHzWf) (:text |has-kids) - |j $ %{} :Expr (:at 1581238326958) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853032584) (:by |rJG4IHzWf) (:text |>) - |j $ %{} :Expr (:at 1581238326958) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581238326958) (:by |rJG4IHzWf) (:text |count) - |j $ %{} :Expr (:at 1581238326958) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581238326958) (:by |rJG4IHzWf) (:text |:kids) - |j $ %{} :Leaf (:at 1581238326958) (:by |rJG4IHzWf) (:text |reply) - |r $ %{} :Leaf (:at 1628853034082) (:by |rJG4IHzWf) (:text |0) - |T $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547653297) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547655161) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1666547681694) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547683797) (:by |rJG4IHzWf) (:text |str-spaced) - |P $ %{} :Leaf (:at 1666547688330) (:by |rJG4IHzWf) (:text "|\"reply") - |Y $ %{} :Leaf (:at 1666547780179) (:by |rJG4IHzWf) (:text |css-reply) - |e $ %{} :Expr (:at 1666549350807) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549350807) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Leaf (:at 1666549350807) (:by |rJG4IHzWf) (:text |selected?) - |h $ %{} :Leaf (:at 1666549356782) (:by |rJG4IHzWf) (:text |css-topic-selected) - |r $ %{} :Expr (:at 1581239947315) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581239947995) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1581239948221) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239948537) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581239949251) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547548513) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1666547541136) (:by |rJG4IHzWf) (:text |css/row-parted) - |T $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547553820) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547555417) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1666549413507) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666549415744) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1666549385846) (:by |rJG4IHzWf) (:text |css/row-middle) - |b $ %{} :Leaf (:at 1666549430136) (:by |rJG4IHzWf) (:text |css-topic-labels) - |r $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |str) - |r $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |:by) - |j $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |reply) - |n $ %{} :Leaf (:at 1666547828310) (:by |rJG4IHzWf) (:text |css-replay-content) - |v $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |nil) - |xT $ %{} :Expr (:at 1581239713769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239717624) (:by |rJG4IHzWf) (:text |comp-time) - |j $ %{} :Expr (:at 1581239721552) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239721552) (:by |rJG4IHzWf) (:text |:time) - |j $ %{} :Leaf (:at 1581239721552) (:by |rJG4IHzWf) (:text |reply) - |j $ %{} :Expr (:at 1641649061068) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1641649062219) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1641649062514) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641649063416) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1641649066277) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549491249) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1666549493499) (:by |rJG4IHzWf) (:text |css/row-middle) - |h $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1641700133127) (:by |rJG4IHzWf) (:text "|\"$0") - |v $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text |:target) - |j $ %{} :Leaf (:at 1641700096017) (:by |rJG4IHzWf) (:text "|\"_blank") - |w $ %{} :Expr (:at 1650952249067) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |:href) - |b $ %{} :Expr (:at 1650952249067) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text "|\"https://news.ycombinator.com/item?id=") - |h $ %{} :Expr (:at 1650952249067) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |:id) - |b $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text |reply) - |l $ %{} :Leaf (:at 1650952249067) (:by |rJG4IHzWf) (:text "|\"&noRedirect=true") - |x $ %{} :Expr (:at 1641700096017) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549458771) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666549472471) (:by |rJG4IHzWf) (:text |css-external-link) - |v $ %{} :Expr (:at 1650952397121) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952399972) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1650952400210) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1650952400348) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952401260) (:by |rJG4IHzWf) (:text |content) - |b $ %{} :Expr (:at 1650952402038) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952402038) (:by |rJG4IHzWf) (:text |:text) - |b $ %{} :Leaf (:at 1650952402038) (:by |rJG4IHzWf) (:text |reply) - |b $ %{} :Expr (:at 1650952404298) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952408275) (:by |rJG4IHzWf) (:text |paragraphs) - |b $ %{} :Expr (:at 1650952488843) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952495104) (:by |rJG4IHzWf) (:text |to-calcit-data) - |T $ %{} :Expr (:at 1650952410402) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952430445) (:by |rJG4IHzWf) (:text |.!split) - |b $ %{} :Expr (:at 1650952607946) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952610477) (:by |rJG4IHzWf) (:text |either) - |T $ %{} :Leaf (:at 1650952414224) (:by |rJG4IHzWf) (:text |content) - |b $ %{} :Leaf (:at 1650952611086) (:by |rJG4IHzWf) (:text "|\"") - |h $ %{} :Leaf (:at 1650952437689) (:by |rJG4IHzWf) (:text |pattern-lines) - |T $ %{} :Expr (:at 1650952632440) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952633852) (:by |rJG4IHzWf) (:text |list->) - |L $ %{} :Expr (:at 1650952634653) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952634974) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1650952636302) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952640070) (:by |rJG4IHzWf) (:text |map-indexed) - |L $ %{} :Leaf (:at 1650952643115) (:by |rJG4IHzWf) (:text |paragraphs) - |T $ %{} :Expr (:at 1650952645092) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952645572) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1650952645886) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952646604) (:by |rJG4IHzWf) (:text |idx) - |b $ %{} :Leaf (:at 1650952656970) (:by |rJG4IHzWf) (:text |block) - |T $ %{} :Expr (:at 1650952649373) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952658533) (:by |rJG4IHzWf) (:text |[]) - |L $ %{} :Leaf (:at 1650952659147) (:by |rJG4IHzWf) (:text |idx) - |T $ %{} :Expr (:at 1650952788429) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650952789176) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1650952789421) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952789709) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1650952792050) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952792900) (:by |rJG4IHzWf) (:text |:style) - |b $ %{} :Expr (:at 1650952794775) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952797700) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1650952798168) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952799900) (:by |rJG4IHzWf) (:text |:position) - |b $ %{} :Leaf (:at 1650952801814) (:by |rJG4IHzWf) (:text |:relative) - |h $ %{} :Expr (:at 1701537435801) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537435801) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1701537435801) (:by |rJG4IHzWf) (:text |style-reply-paragraph) - |P $ %{} :Expr (:at 1701536179656) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701536182189) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1701536183742) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701536195766) (:by |rJG4IHzWf) (:text |some?) - |T $ %{} :Leaf (:at 1701536184358) (:by |rJG4IHzWf) (:text |config/audio-target) - |T $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1666547983555) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547985485) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text "|\"clickable-container") - |b $ %{} :Leaf (:at 1666548005318) (:by |rJG4IHzWf) (:text |css-p-content) - |h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |comp-icon) - |b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:volume-1) - |h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |18) - |h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:pointer) - |l $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |1) - |o $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |200) - |h $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |80) - |l $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |70) - |l $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |case-default) - |b $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |audio-target) - |h $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |read-text!) - |b $ %{} :Expr (:at 1650968698948) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650968699497) (:by |rJG4IHzWf) (:text |do) - |T $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |html->readable) - |b $ %{} :Leaf (:at 1650952976654) (:by |rJG4IHzWf) (:text |block) - |b $ %{} :Expr (:at 1650968702635) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |:highlight) - |h $ %{} :Expr (:at 1650968702635) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |[]) - |b $ %{} :Expr (:at 1650968702635) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |:id) - |b $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |reply) - |h $ %{} :Leaf (:at 1650968702635) (:by |rJG4IHzWf) (:text |idx) - |l $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text "|\"azure") - |b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |speech-via-api!) - |b $ %{} :Expr (:at 1650952818195) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952818195) (:by |rJG4IHzWf) (:text |html->readable) - |b $ %{} :Leaf (:at 1650952977766) (:by |rJG4IHzWf) (:text |block) - |h $ %{} :Expr (:at 1650968693062) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968693377) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1650968694948) (:by |rJG4IHzWf) - :data $ {} - |h $ %{} :Expr (:at 1650968705650) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968705650) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1650968705650) (:by |rJG4IHzWf) (:text |:highlight) - |h $ %{} :Expr (:at 1650968705650) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968705650) (:by |rJG4IHzWf) (:text |[]) - |b $ %{} :Expr (:at 1650968705650) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968705650) (:by |rJG4IHzWf) (:text |:id) - |b $ %{} :Leaf (:at 1650968705650) (:by |rJG4IHzWf) (:text |reply) - |h $ %{} :Leaf (:at 1650968705650) (:by |rJG4IHzWf) (:text |idx) - |l $ %{} :Expr (:at 1650968717121) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650968717365) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1650968717991) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232663553) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581232663553) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236254387) (:by |rJG4IHzWf) (:text |:innerHTML) - |j $ %{} :Expr (:at 1641650309108) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650431101409) (:by |rJG4IHzWf) (:text |wo-log) - |T $ %{} :Expr (:at 1641650196398) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1641650231305) (:by |rJG4IHzWf) (:text |.!render) - |L $ %{} :Leaf (:at 1641650211535) (:by |rJG4IHzWf) (:text |markdown-reader) - |T $ %{} :Leaf (:at 1650952711825) (:by |rJG4IHzWf) (:text |block) - |r $ %{} :Expr (:at 1581236512746) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236513865) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1650953145366) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650953146819) (:by |rJG4IHzWf) (:text |merge) - |T $ %{} :Expr (:at 1581236514103) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236514413) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581236514639) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236517350) (:by |rJG4IHzWf) (:text |:line-height) - |j $ %{} :Leaf (:at 1588437224556) (:by |rJG4IHzWf) (:text "|\"20px") - |r $ %{} :Expr (:at 1641648561952) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641648563833) (:by |rJG4IHzWf) (:text |:font-size) - |j $ %{} :Leaf (:at 1641648571790) (:by |rJG4IHzWf) (:text |14) - |b $ %{} :Expr (:at 1650953148261) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650953148736) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1650953150056) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650953149521) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Leaf (:at 1650953150998) (:by |rJG4IHzWf) (:text |idx) - |h $ %{} :Leaf (:at 1650953154517) (:by |rJG4IHzWf) (:text |highlighted-idx) - |T $ %{} :Expr (:at 1650953147602) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650953147602) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1650953147602) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650953147602) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1650953147602) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650953147602) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1650953147602) (:by |rJG4IHzWf) (:text |80) - |h $ %{} :Leaf (:at 1650953147602) (:by |rJG4IHzWf) (:text |80) - |l $ %{} :Leaf (:at 1650953147602) (:by |rJG4IHzWf) (:text |90) - |v $ %{} :Expr (:at 1581237826049) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237827346) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1581237849146) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581237850016) (:by |rJG4IHzWf) (:text |fn) - |T $ %{} :Expr (:at 1581237827660) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237829658) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1581237830351) (:by |rJG4IHzWf) (:text |d!) - |j $ %{} :Expr (:at 1581237864267) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581238299180) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581237865229) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237866134) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Leaf (:at 1581237868509) (:by |rJG4IHzWf) (:text "|\"A") - |r $ %{} :Expr (:at 1581237868940) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237870535) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Leaf (:at 1581237871063) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Leaf (:at 1581237872247) (:by |rJG4IHzWf) (:text |:event) - |v $ %{} :Leaf (:at 1581237875656) (:by |rJG4IHzWf) (:text |.-target) - |x $ %{} :Leaf (:at 1581237877702) (:by |rJG4IHzWf) (:text |.-tagName) - |T $ %{} :Expr (:at 1581238306420) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581238307862) (:by |rJG4IHzWf) (:text |do) - |T $ %{} :Expr (:at 1581237852963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237852963) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Leaf (:at 1581237852963) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Leaf (:at 1581237852963) (:by |rJG4IHzWf) (:text |:event) - |v $ %{} :Leaf (:at 1641648486671) (:by |rJG4IHzWf) (:text |.!preventDefault) - |j $ %{} :Expr (:at 1581238310201) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581238310201) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Leaf (:at 1581238310201) (:by |rJG4IHzWf) (:text |e) - |r $ %{} :Leaf (:at 1581238310201) (:by |rJG4IHzWf) (:text |:event) - |v $ %{} :Leaf (:at 1581238310201) (:by |rJG4IHzWf) (:text |.-target) - |x $ %{} :Leaf (:at 1581238310201) (:by |rJG4IHzWf) (:text |.-href) - |y $ %{} :Leaf (:at 1581238310201) (:by |rJG4IHzWf) (:text |js/window.open) - |x $ %{} :Expr (:at 1581240109855) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240110324) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581240110910) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240111233) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1582357634877) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547861212) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1666547862918) (:by |rJG4IHzWf) (:text |css/row-parted) - |n $ %{} :Expr (:at 1589636249693) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589636251338) (:by |rJG4IHzWf) (:text |span) - |j $ %{} :Leaf (:at 1589636251906) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1581240181644) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581240189134) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581240189732) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581240189856) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240190644) (:by |rJG4IHzWf) (:text |size) - |j $ %{} :Expr (:at 1581240191037) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240191037) (:by |rJG4IHzWf) (:text |count) - |j $ %{} :Expr (:at 1581240191037) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240191037) (:by |rJG4IHzWf) (:text |:kids) - |j $ %{} :Leaf (:at 1581240191037) (:by |rJG4IHzWf) (:text |reply) - |T $ %{} :Expr (:at 1581240192870) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581240193408) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581240194696) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853041329) (:by |rJG4IHzWf) (:text |>) - |j $ %{} :Leaf (:at 1581240195723) (:by |rJG4IHzWf) (:text |size) - |r $ %{} :Leaf (:at 1628853042266) (:by |rJG4IHzWf) (:text |0) - |T $ %{} :Expr (:at 1581240199151) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581240199796) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1581240200050) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240200357) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1582357429484) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547890823) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1666547888390) (:by |rJG4IHzWf) (:text |css-open-replies) - |r $ %{} :Expr (:at 1582357552412) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1582357552412) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1650960886555) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1650960886555) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1650960886555) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |d!) - |e $ %{} :Expr (:at 1650961780524) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1688746427505) (:by |rJG4IHzWf) (:text |::) - |T $ %{} :Leaf (:at 1688746426466) (:by |rJG4IHzWf) (:text |:router-after) - |b $ %{} :Leaf (:at 1650961781926) (:by |rJG4IHzWf) (:text |idx) - |h $ %{} :Expr (:at 1650961785183) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650961785183) (:by |rJG4IHzWf) (:text |:id) - |b $ %{} :Leaf (:at 1650961785183) (:by |rJG4IHzWf) (:text |reply) - |l $ %{} :Expr (:at 1650960886555) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |:load-reply) - |h $ %{} :Expr (:at 1650960886555) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |:id) - |b $ %{} :Leaf (:at 1650960886555) (:by |rJG4IHzWf) (:text |reply) - |T $ %{} :Expr (:at 1581240111691) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1581240112238) (:by |rJG4IHzWf) (:text |<>) - |r $ %{} :Expr (:at 1581240112238) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240112238) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581240112238) (:by |rJG4IHzWf) (:text "|\"Comments: ") - |t $ %{} :Leaf (:at 1666548155963) (:by |rJG4IHzWf) (:text |css-has-comment) - |j $ %{} :Expr (:at 1581240202843) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240202843) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1581240220959) (:by |rJG4IHzWf) (:text |size) - |j $ %{} :Expr (:at 1581240206212) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240206212) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581240206212) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581240206212) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581240213360) (:by |rJG4IHzWf) (:text "|\"No comments.") - |n $ %{} :Leaf (:at 1666548168350) (:by |rJG4IHzWf) (:text |css-no-comment) - |comp-reply-parent $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581236760924) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236764429) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581236760924) (:by |rJG4IHzWf) (:text |comp-reply-parent) - |r $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |reply) - |j $ %{} :Leaf (:at 1587920821138) (:by |rJG4IHzWf) (:text |on-close) - |v $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |nil?) - |j $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |reply) - |r $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text "|\"data required") - |r $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |80) - |r $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |8) - |v $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547414347) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666547420599) (:by |rJG4IHzWf) (:text |css-reply-parent) - |v $ %{} :Expr (:at 1641647517932) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1641647518885) (:by |rJG4IHzWf) (:text |div) - |H $ %{} :Expr (:at 1641647520911) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647522074) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547429121) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547432147) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666547436664) (:by |rJG4IHzWf) (:text |css/row-middle) - |j $ %{} :Expr (:at 1641647525371) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647526248) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1641648818754) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641648819126) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1641648819427) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641648821305) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Leaf (:at 1641648823081) (:by |rJG4IHzWf) (:text "|\"100%") - |L $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |comp-icon) - |j $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |:x) - |r $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |:font-size) - |j $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |14) - |r $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |200) - |r $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |80) - |v $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |80) - |v $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |:pointer) - |x $ %{} :Expr (:at 1641647555487) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647560443) (:by |rJG4IHzWf) (:text |:line-height) - |j $ %{} :Leaf (:at 1641648876138) (:by |rJG4IHzWf) (:text |1) - |v $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1641647519417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |on-close) - |j $ %{} :Leaf (:at 1641647519417) (:by |rJG4IHzWf) (:text |d!) - |P $ %{} :Expr (:at 1641647565210) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647566086) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1641647573099) (:by |rJG4IHzWf) (:text |6) - |r $ %{} :Leaf (:at 1641647567544) (:by |rJG4IHzWf) (:text |nil) - |T $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236953955) (:by |rJG4IHzWf) (:text |:innerHTML) - |j $ %{} :Expr (:at 1581236762000) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1581236762000) (:by |rJG4IHzWf) (:text |reply) - |n $ %{} :Expr (:at 1666547444017) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547445857) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1666547491540) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547493613) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1666547447713) (:by |rJG4IHzWf) (:text |css/expand) - |b $ %{} :Leaf (:at 1666547618272) (:by |rJG4IHzWf) (:text |css-reply-parent-content) - |x $ %{} :Expr (:at 1587920688767) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1587920690240) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1587920690730) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587920691079) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547466657) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547468739) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666547471826) (:by |rJG4IHzWf) (:text |css/row-parted) - |j $ %{} :Expr (:at 1587920691309) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587920693007) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1588438028852) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588438029233) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1588438029504) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588438032484) (:by |rJG4IHzWf) (:text |:line-height) - |j $ %{} :Leaf (:at 1588438045361) (:by |rJG4IHzWf) (:text "|\"20px") - |T $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |60) - |r $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text "|\"@") - |r $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |:by) - |j $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |reply) - |v $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |nil) - |xT $ %{} :Expr (:at 1581239867524) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239867871) (:by |rJG4IHzWf) (:text |comp-time) - |j $ %{} :Expr (:at 1581239870598) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239870598) (:by |rJG4IHzWf) (:text |:time) - |j $ %{} :Leaf (:at 1581239870598) (:by |rJG4IHzWf) (:text |reply) - |y $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |nil) - |yT $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text "|\"Comments: ") - |r $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |count) - |j $ %{} :Expr (:at 1581236919963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |:kids) - |j $ %{} :Leaf (:at 1581236919963) (:by |rJG4IHzWf) (:text |reply) - |comp-time $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581239727463) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239729984) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581239727463) (:by |rJG4IHzWf) (:text |comp-time) - |r $ %{} :Expr (:at 1581239727463) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239732999) (:by |rJG4IHzWf) (:text |time) - |v $ %{} :Expr (:at 1581239737684) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581239738224) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581239739664) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239740574) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1581239741147) (:by |rJG4IHzWf) (:text |time) - |T $ %{} :Expr (:at 1581239751390) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581239756973) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581239759678) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581239759841) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239763207) (:by |rJG4IHzWf) (:text |time-obj) - |j $ %{} :Expr (:at 1581239763682) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239763682) (:by |rJG4IHzWf) (:text |dayjs) - |j $ %{} :Expr (:at 1581239763682) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852839776) (:by |rJG4IHzWf) (:text |*) - |b $ %{} :Leaf (:at 1628852840383) (:by |rJG4IHzWf) (:text |1000) - |j $ %{} :Leaf (:at 1581239763682) (:by |rJG4IHzWf) (:text |time) - |j $ %{} :Expr (:at 1581239778236) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239779736) (:by |rJG4IHzWf) (:text |year) - |j $ %{} :Expr (:at 1581239780023) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860934141) (:by |rJG4IHzWf) (:text |.!getFullYear) - |j $ %{} :Expr (:at 1581239786710) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628854423653) (:by |rJG4IHzWf) (:text |new) - |T $ %{} :Leaf (:at 1628854421361) (:by |rJG4IHzWf) (:text |js/Date) - |T $ %{} :Expr (:at 1581239766118) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581239766694) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581239768963) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239792066) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Expr (:at 1581239917316) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581239918091) (:by |rJG4IHzWf) (:text |str) - |T $ %{} :Leaf (:at 1581239792769) (:by |rJG4IHzWf) (:text |year) - |r $ %{} :Expr (:at 1581239796403) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860932597) (:by |rJG4IHzWf) (:text |.!format) - |j $ %{} :Leaf (:at 1581239806191) (:by |rJG4IHzWf) (:text |time-obj) - |r $ %{} :Leaf (:at 1581239808109) (:by |rJG4IHzWf) (:text "|\"YYYY") - |T $ %{} :Expr (:at 1581239733800) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239733800) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581239733800) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860929006) (:by |rJG4IHzWf) (:text |.!format) - |f $ %{} :Leaf (:at 1581239827380) (:by |rJG4IHzWf) (:text |time-obj) - |r $ %{} :Leaf (:at 1581239813268) (:by |rJG4IHzWf) (:text "|\"MM-DD HH:mm") - |j $ %{} :Expr (:at 1581239733800) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239733800) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581239733800) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860930557) (:by |rJG4IHzWf) (:text |.!format) - |f $ %{} :Leaf (:at 1581239828245) (:by |rJG4IHzWf) (:text |time-obj) - |r $ %{} :Leaf (:at 1581239733800) (:by |rJG4IHzWf) (:text "|\"YYYY-MM-DD HH:mm") - |j $ %{} :Expr (:at 1581239743227) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581239744044) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1581239746453) (:by |rJG4IHzWf) (:text "|\"nil") - |comp-topic $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581230198149) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230200308) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581230198149) (:by |rJG4IHzWf) (:text |comp-topic) - |r $ %{} :Expr (:at 1581230198149) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232507432) (:by |rJG4IHzWf) (:text |topic) - |b $ %{} :Leaf (:at 1581232543683) (:by |rJG4IHzWf) (:text |style) - |j $ %{} :Leaf (:at 1581232509049) (:by |rJG4IHzWf) (:text |on-click) - |v $ %{} :Expr (:at 1581232612071) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581232612700) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581232613720) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232616133) (:by |rJG4IHzWf) (:text |nil?) - |j $ %{} :Leaf (:at 1581232617061) (:by |rJG4IHzWf) (:text |topic) - |P $ %{} :Expr (:at 1581232617547) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232620988) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581232621202) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232621534) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1581232622177) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232622915) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1581242057173) (:by |rJG4IHzWf) (:text "|\"Data from network") - |r $ %{} :Expr (:at 1581232628063) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232627711) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581232628839) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232629809) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1581232630023) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232630420) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1581232630979) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1581232631197) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1581232631563) (:by |rJG4IHzWf) (:text |80) - |r $ %{} :Expr (:at 1581236165312) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236166433) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1581238567004) (:by |rJG4IHzWf) (:text |8) - |v $ %{} :Expr (:at 1581237715771) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237715771) (:by |rJG4IHzWf) (:text |:font-family) - |j $ %{} :Leaf (:at 1581237715771) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |T $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Expr (:at 1666547003872) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547009035) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text "|\"hoverable") - |b $ %{} :Leaf (:at 1666547016134) (:by |rJG4IHzWf) (:text |css-topic) - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Leaf (:at 1581232571412) (:by |rJG4IHzWf) (:text |style) - |v $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Leaf (:at 1581232502424) (:by |rJG4IHzWf) (:text |on-click) - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581238518484) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547180193) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666547183281) (:by |rJG4IHzWf) (:text |css-topic-title) - |n $ %{} :Expr (:at 1581661302744) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661302744) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581661302744) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661302744) (:by |rJG4IHzWf) (:text |:score) - |j $ %{} :Leaf (:at 1581661302744) (:by |rJG4IHzWf) (:text |topic) - |n $ %{} :Leaf (:at 1666547173376) (:by |rJG4IHzWf) (:text |css-topic-score) - |p $ %{} :Expr (:at 1581661307232) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661308279) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581661308653) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1581661309192) (:by |rJG4IHzWf) (:text |nil) - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |topic) - |v $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547118578) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666547125169) (:by |rJG4IHzWf) (:text |css-topic-desc) - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text "|\"@") - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:by) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |topic) - |y $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |12) - |r $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |nil) - |yT $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text "|\"Comments: ") - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |count) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:kids) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |topic) - |yj $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |12) - |r $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |nil) - |yr $ %{} :Expr (:at 1581236114784) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581236115430) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581236115847) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581236115998) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236116847) (:by |rJG4IHzWf) (:text |url) - |j $ %{} :Expr (:at 1581236117282) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236117282) (:by |rJG4IHzWf) (:text |:url) - |j $ %{} :Leaf (:at 1581236117282) (:by |rJG4IHzWf) (:text |topic) - |T $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Expr (:at 1581236095544) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581236098653) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581236099256) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236101053) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1581236120572) (:by |rJG4IHzWf) (:text |url) - |P $ %{} :Expr (:at 1581236121758) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236125615) (:by |rJG4IHzWf) (:text |.-host) - |j $ %{} :Expr (:at 1581236126530) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628854505604) (:by |rJG4IHzWf) (:text |new) - |T $ %{} :Leaf (:at 1628854506701) (:by |rJG4IHzWf) (:text |js/URL) - |j $ %{} :Leaf (:at 1581236130715) (:by |rJG4IHzWf) (:text |url) - |j $ %{} :Leaf (:at 1581236152589) (:by |rJG4IHzWf) (:text "|\"nothing") - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:href) - |j $ %{} :Leaf (:at 1581236143397) (:by |rJG4IHzWf) (:text |url) - |v $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:target) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text "|\"_blank") - |x $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:text-overflow) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:ellipsis) - |r $ %{} :Expr (:at 1581230203778) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:overflow) - |j $ %{} :Leaf (:at 1581230203778) (:by |rJG4IHzWf) (:text |:hidden) - |comp-topic-list $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176226779) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |comp-topic-list) - |n $ %{} :Expr (:at 1581176228488) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581235774746) (:by |rJG4IHzWf) (:text |states) - |T $ %{} :Leaf (:at 1581235773876) (:by |rJG4IHzWf) (:text |resource) - |j $ %{} :Leaf (:at 1588437328629) (:by |rJG4IHzWf) (:text |focus-id) - |r $ %{} :Expr (:at 1581235775885) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581235776608) (:by |rJG4IHzWf) (:text |let) - |L $ %{} :Expr (:at 1581235776954) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Expr (:at 1587833038321) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833039860) (:by |rJG4IHzWf) (:text |cursor) - |j $ %{} :Expr (:at 1587833040054) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833043974) (:by |rJG4IHzWf) (:text |:cursor) - |j $ %{} :Leaf (:at 1587833045097) (:by |rJG4IHzWf) (:text |states) - |T $ %{} :Expr (:at 1581235777125) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235778807) (:by |rJG4IHzWf) (:text |state) - |j $ %{} :Expr (:at 1581235779020) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235779613) (:by |rJG4IHzWf) (:text |or) - |j $ %{} :Expr (:at 1581235779986) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235780523) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Leaf (:at 1581235781439) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Expr (:at 1581235781957) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235782286) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1587833449964) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833460178) (:by |rJG4IHzWf) (:text |no-list?) - |j $ %{} :Expr (:at 1587833465199) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833465199) (:by |rJG4IHzWf) (:text |empty?) - |j $ %{} :Expr (:at 1587833465199) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833465199) (:by |rJG4IHzWf) (:text |:top10) - |j $ %{} :Leaf (:at 1587833465199) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1587833737892) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833742260) (:by |rJG4IHzWf) (:text |load-plugin) - |j $ %{} :Expr (:at 1587833742880) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833743206) (:by |rJG4IHzWf) (:text |use-prompt) - |j $ %{} :Expr (:at 1587833748209) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833749017) (:by |rJG4IHzWf) (:text |>>) - |j $ %{} :Leaf (:at 1587833750496) (:by |rJG4IHzWf) (:text |states) - |r $ %{} :Leaf (:at 1587833752114) (:by |rJG4IHzWf) (:text |:load) - |r $ %{} :Expr (:at 1587833754455) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833755307) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1587833755583) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833902099) (:by |rJG4IHzWf) (:text |:text) - |j $ %{} :Leaf (:at 1587834857008) (:by |rJG4IHzWf) (:text "|\"Topic id:") - |r $ %{} :Expr (:at 1587834821751) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834823269) (:by |rJG4IHzWf) (:text |:placeholder) - |j $ %{} :Leaf (:at 1587834841721) (:by |rJG4IHzWf) (:text "|\"use number id from hacker news url") - |T $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666546924881) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546928059) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666546930384) (:by |rJG4IHzWf) (:text |css/column) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:width) - |j $ %{} :Expr (:at 1587833405222) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1587833406617) (:by |rJG4IHzWf) (:text |if) - |J $ %{} :Leaf (:at 1587833468243) (:by |rJG4IHzWf) (:text |no-list?) - |P $ %{} :Leaf (:at 1701536342752) (:by |rJG4IHzWf) (:text |40) - |T $ %{} :Leaf (:at 1587833995767) (:by |rJG4IHzWf) (:text |400) - |n $ %{} :Expr (:at 1581176672070) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176673389) (:by |rJG4IHzWf) (:text |:height) - |j $ %{} :Leaf (:at 1581176676674) (:by |rJG4IHzWf) (:text "|\"100%") - |r $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:white-space) - |j $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:nowrap) - |v $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:overflow) - |j $ %{} :Leaf (:at 1581176686943) (:by |rJG4IHzWf) (:text |:auto) - |n $ %{} :Expr (:at 1581235728659) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235729105) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581235729403) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235729720) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666546938602) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546941614) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666546945503) (:by |rJG4IHzWf) (:text |css/row-middle) - |j $ %{} :Expr (:at 1581235874622) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235875967) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581235876182) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235876515) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581235876734) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235877833) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1701536400308) (:by |rJG4IHzWf) (:text "|\"8px 4px") - |r $ %{} :Expr (:at 1581236668208) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236670448) (:by |rJG4IHzWf) (:text |:border-bottom) - |j $ %{} :Expr (:at 1581236671067) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236671607) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581236673994) (:by |rJG4IHzWf) (:text "|\"1px solid ") - |r $ %{} :Expr (:at 1581236674852) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236675289) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1581236675655) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1581236675904) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1581236676400) (:by |rJG4IHzWf) (:text |90) - |v $ %{} :Expr (:at 1588437941898) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437949619) (:by |rJG4IHzWf) (:text |:justify-content) - |j $ %{} :Leaf (:at 1588437952461) (:by |rJG4IHzWf) (:text |:flex-end) - |n $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587833934043) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698800386) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698800386) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1581698828685) (:by |rJG4IHzWf) (:text "|\"List") - |r $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546956981) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1666546954225) (:by |rJG4IHzWf) (:text |css/link) - |v $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698800386) (:by |rJG4IHzWf) (:text |:on-click) - |j $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698800386) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698800386) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1581698800386) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1581698800386) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698800386) (:by |rJG4IHzWf) (:text |d!) - |j $ %{} :Leaf (:at 1581698814852) (:by |rJG4IHzWf) (:text |:load-top10) - |r $ %{} :Leaf (:at 1581698817611) (:by |rJG4IHzWf) (:text |nil) - |p $ %{} :Expr (:at 1581661201880) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661202630) (:by |rJG4IHzWf) (:text |if) - |f $ %{} :Leaf (:at 1587833471743) (:by |rJG4IHzWf) (:text |no-list?) - |r $ %{} :Expr (:at 1581661221510) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581661221510) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1701536544303) (:by |rJG4IHzWf) (:text "|\"none.") - |r $ %{} :Expr (:at 1581661221510) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581661221510) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1581661221510) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |80) - |r $ %{} :Expr (:at 1581661221510) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |8) - |v $ %{} :Expr (:at 1581661221510) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |:font-family) - |j $ %{} :Leaf (:at 1581661221510) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |r $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |list->) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666546974033) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546977670) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1666546980544) (:by |rJG4IHzWf) (:text |css/expand) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581176705300) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176706326) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1581235887204) (:by |rJG4IHzWf) (:text "|\"0px 0 100px 0") - |r $ %{} :Expr (:at 1581176715431) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581236648300) (:by |rJG4IHzWf) (:text |:overflow-x) - |j $ %{} :Leaf (:at 1581176718892) (:by |rJG4IHzWf) (:text |:hidden) - |v $ %{} :Expr (:at 1581176719491) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176724006) (:by |rJG4IHzWf) (:text |:text-overflow) - |j $ %{} :Leaf (:at 1581176738692) (:by |rJG4IHzWf) (:text |:ellipsis) - |r $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854550905) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:top10) - |j $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |resource) - |r $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |map) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Expr (:at 1581176224495) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |:id) - |j $ %{} :Leaf (:at 1581176224495) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1581230195895) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230197519) (:by |rJG4IHzWf) (:text |comp-topic) - |j $ %{} :Leaf (:at 1581230207502) (:by |rJG4IHzWf) (:text |topic) - |n $ %{} :Expr (:at 1588437334419) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1588437335024) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1588437336086) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437337307) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Expr (:at 1588437338880) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437339860) (:by |rJG4IHzWf) (:text |:id) - |j $ %{} :Leaf (:at 1588437341893) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Leaf (:at 1588437343088) (:by |rJG4IHzWf) (:text |focus-id) - |P $ %{} :Expr (:at 1588437344371) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437344701) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1588437345560) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437347797) (:by |rJG4IHzWf) (:text |:background-color) - |j $ %{} :Leaf (:at 1588437348847) (:by |rJG4IHzWf) (:text |:white) - |T $ %{} :Expr (:at 1581232558897) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232558625) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |e) - |j $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |d!) - |r $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |d!) - |j $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |:load-topic) - |r $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |:id) - |j $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |topic) - |v $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |d!) - |j $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |:router) - |r $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Expr (:at 1581232512267) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |:id) - |j $ %{} :Leaf (:at 1581232512267) (:by |rJG4IHzWf) (:text |topic) - |u $ %{} :Expr (:at 1701536315082) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536316614) (:by |rJG4IHzWf) (:text |div) - |b $ %{} :Expr (:at 1701536317281) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536319558) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536331750) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536333296) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Leaf (:at 1701536336427) (:by |rJG4IHzWf) (:text |css/row-parted) - |e $ %{} :Expr (:at 1701536326149) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536328653) (:by |rJG4IHzWf) (:text |span) - |b $ %{} :Leaf (:at 1701536329575) (:by |rJG4IHzWf) (:text |nil) - |h $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |a) - |b $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |:inner-text) - |b $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text "|\"Load") - |h $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |:class-name) - |b $ %{} :Expr (:at 1701536466334) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701536470871) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |css/link) - |X $ %{} :Leaf (:at 1701536506460) (:by |rJG4IHzWf) (:text |css/font-fancy!) - |b $ %{} :Leaf (:at 1701536478137) (:by |rJG4IHzWf) (:text |style-load) - |l $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |:on-click) - |b $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |e) - |b $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |d!) - |h $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |.show) - |b $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |load-plugin) - |h $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |d!) - |l $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |text) - |h $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |:load-topic) - |h $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |text) - |l $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |d!) - |b $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |:router) - |h $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |:data) - |b $ %{} :Expr (:at 1701536320763) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |[]) - |b $ %{} :Leaf (:at 1701536320763) (:by |rJG4IHzWf) (:text |text) - |x $ %{} :Expr (:at 1587833774591) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854597373) (:by |rJG4IHzWf) (:text |.render) - |j $ %{} :Leaf (:at 1587833776988) (:by |rJG4IHzWf) (:text |load-plugin) - |comp-topic-parent $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581237242192) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237247535) (:by |rJG4IHzWf) (:text |defcomp) - |j $ %{} :Leaf (:at 1581237242192) (:by |rJG4IHzWf) (:text |comp-topic-parent) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |topic) - |v $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |nil?) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text "|\"loading...") - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |80) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:padding) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |8) - |v $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Expr (:at 1666547333247) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547335586) (:by |rJG4IHzWf) (:text |str-spaced) - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text "|\"hoverable") - |b $ %{} :Leaf (:at 1666547339533) (:by |rJG4IHzWf) (:text |css-topic-parent) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581661100137) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549531253) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Leaf (:at 1666549533788) (:by |rJG4IHzWf) (:text |css/row-parted) - |r $ %{} :Expr (:at 1582357002104) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1582357003600) (:by |rJG4IHzWf) (:text |div) - |L $ %{} :Expr (:at 1582357004061) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1582357004402) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1582357004980) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549538862) (:by |rJG4IHzWf) (:text |:class-name) - |j $ %{} :Expr (:at 1588436178758) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666549543531) (:by |rJG4IHzWf) (:text |str-spaced) - |L $ %{} :Leaf (:at 1666549545954) (:by |rJG4IHzWf) (:text |css/expand) - |T $ %{} :Leaf (:at 1666549548827) (:by |rJG4IHzWf) (:text |css/row-parted) - |P $ %{} :Expr (:at 1582357009846) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1582357009846) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1582357009846) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1582357009846) (:by |rJG4IHzWf) (:text |:score) - |j $ %{} :Leaf (:at 1582357009846) (:by |rJG4IHzWf) (:text |topic) - |n $ %{} :Leaf (:at 1666547380554) (:by |rJG4IHzWf) (:text |css-topic-parent-title) - |R $ %{} :Expr (:at 1582357014961) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1582357015801) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1582357016210) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1582357016748) (:by |rJG4IHzWf) (:text |nil) - |T $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:title) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1588436236808) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1588436238530) (:by |rJG4IHzWf) (:text |merge) - |L $ %{} :Leaf (:at 1588436241926) (:by |rJG4IHzWf) (:text |ui/expand) - |T $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:font-size) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |16) - |r $ %{} :Expr (:at 1588436198762) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588436205089) (:by |rJG4IHzWf) (:text |:text-overflow) - |j $ %{} :Leaf (:at 1588436208623) (:by |rJG4IHzWf) (:text |:ellipsis) - |v $ %{} :Expr (:at 1588436213813) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588436216563) (:by |rJG4IHzWf) (:text |:overflow) - |j $ %{} :Leaf (:at 1588436218497) (:by |rJG4IHzWf) (:text |:hidden) - |x $ %{} :Expr (:at 1588436252125) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588436264536) (:by |rJG4IHzWf) (:text |:white-space) - |j $ %{} :Leaf (:at 1588436257924) (:by |rJG4IHzWf) (:text |:nowrap) - |t $ %{} :Expr (:at 1588436165924) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588436165924) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1588436165924) (:by |rJG4IHzWf) (:text |8) - |r $ %{} :Leaf (:at 1588436165924) (:by |rJG4IHzWf) (:text |nil) - |v $ %{} :Expr (:at 1581661104972) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661106115) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1581661106434) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661106848) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581661107411) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661108441) (:by |rJG4IHzWf) (:text |:href) - |j $ %{} :Expr (:at 1581661145213) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661153685) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581661150792) (:by |rJG4IHzWf) (:text "|\"https://news.ycombinator.com/item?id=") - |r $ %{} :Expr (:at 1581661157293) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661158400) (:by |rJG4IHzWf) (:text |:id) - |j $ %{} :Leaf (:at 1581661159232) (:by |rJG4IHzWf) (:text |topic) - |v $ %{} :Leaf (:at 1590296546375) (:by |rJG4IHzWf) (:text "|\"&noRedirect=true") - |r $ %{} :Expr (:at 1581661110370) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661112485) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Leaf (:at 1641700218157) (:by |rJG4IHzWf) (:text "|\"$0") - |v $ %{} :Expr (:at 1581661115217) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581661118240) (:by |rJG4IHzWf) (:text |:target) - |j $ %{} :Leaf (:at 1581661119835) (:by |rJG4IHzWf) (:text "|\"_blank") - |v $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |div) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:color) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |hsl) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |0) - |r $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |0) - |v $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |50) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:font-family) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |v $ %{} :Expr (:at 1588437658338) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1588437661028) (:by |rJG4IHzWf) (:text |:line-height) - |j $ %{} :Leaf (:at 1588437662661) (:by |rJG4IHzWf) (:text "|\"20px") - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text "|\"@") - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:by) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |topic) - |y $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |12) - |r $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |nil) - |yT $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |<>) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text "|\"Comments: ") - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |count) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:kids) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |topic) - |yj $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |=<) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |12) - |r $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |nil) - |yr $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |url) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:url) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |a) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:inner-text) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |url) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |.-host) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628854499182) (:by |rJG4IHzWf) (:text |new) - |T $ %{} :Leaf (:at 1628854487954) (:by |rJG4IHzWf) (:text |js/URL) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |url) - |v $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text "|\"nothing") - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:href) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |url) - |v $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:target) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text "|\"_blank") - |x $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:style) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:text-overflow) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:ellipsis) - |r $ %{} :Expr (:at 1581237243026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:overflow) - |j $ %{} :Leaf (:at 1581237243026) (:by |rJG4IHzWf) (:text |:hidden) - |css-comment-list $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547282500) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547291163) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547282500) (:by |rJG4IHzWf) (:text |css-comment-list) - |h $ %{} :Expr (:at 1666547282500) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547292368) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547292726) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547294215) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547294653) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547294653) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |500) - |h $ %{} :Expr (:at 1666547294653) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |:max-width) - |b $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text "|\"100vw") - |l $ %{} :Expr (:at 1666547294653) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |:height) - |b $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text "|\"100%") - |o $ %{} :Expr (:at 1666547294653) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |:overflow-y) - |b $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |:auto) - |q $ %{} :Expr (:at 1666547294653) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |:margin-right) - |b $ %{} :Leaf (:at 1666547294653) (:by |rJG4IHzWf) (:text |8) - |css-external-link $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666549472859) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549474252) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666549472859) (:by |rJG4IHzWf) (:text |css-external-link) - |h $ %{} :Expr (:at 1666549472859) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549475683) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549476138) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549477307) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666549477761) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549477761) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549477761) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549477761) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666549477761) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |h $ %{} :Expr (:at 1666549477761) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549477761) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666549477761) (:by |rJG4IHzWf) (:text |12) - |css-has-comment $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666548156319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548157419) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666548156319) (:by |rJG4IHzWf) (:text |css-has-comment) - |h $ %{} :Expr (:at 1666548156319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548160868) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548161136) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548188905) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666548162509) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548162509) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548162509) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548162509) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666548162509) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |h $ %{} :Expr (:at 1666548162509) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548162509) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666548162509) (:by |rJG4IHzWf) (:text |12) - |css-no-comment $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666548168694) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548169806) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666548168694) (:by |rJG4IHzWf) (:text |css-no-comment) - |h $ %{} :Expr (:at 1666548168694) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548170939) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548171404) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548172606) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666548172975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548172975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |h $ %{} :Expr (:at 1666548172975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |12) - |l $ %{} :Expr (:at 1666548172975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Expr (:at 1666548172975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666548172975) (:by |rJG4IHzWf) (:text |80) - |css-open-replies $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547912027) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547884681) (:by |rJG4IHzWf) (:text |css-open-replies) - |h $ %{} :Expr (:at 1666547913128) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547913675) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1666547914211) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547915573) (:by |rJG4IHzWf) (:text "|\"$0") - |T $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:display) - |b $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:inline-block) - |h $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1701538478491) (:by |rJG4IHzWf) (:text |180) - |h $ %{} :Leaf (:at 1701538504805) (:by |rJG4IHzWf) (:text |40) - |l $ %{} :Leaf (:at 1666548478771) (:by |rJG4IHzWf) (:text |68) - |l $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:white) - |o $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text "|\"0 12px") - |q $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:border-radius) - |b $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text "|\"16px") - |s $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:pointer) - |t $ %{} :Expr (:at 1650952238347) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:user-select) - |b $ %{} :Leaf (:at 1650952238347) (:by |rJG4IHzWf) (:text |:none) - |u $ %{} :Expr (:at 1666548378058) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548383583) (:by |rJG4IHzWf) (:text |:transition-duration) - |b $ %{} :Leaf (:at 1666548387226) (:by |rJG4IHzWf) (:text "|\"300ms") - |b $ %{} :Expr (:at 1666548205829) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548211814) (:by |rJG4IHzWf) (:text "|\"$0:hover") - |b $ %{} :Expr (:at 1666548213729) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548214306) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548214846) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548219272) (:by |rJG4IHzWf) (:text |:box-shadow) - |b $ %{} :Expr (:at 1666548221234) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548221782) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1701538494478) (:by |rJG4IHzWf) (:text "|\"1px 1px 4px ") - |h $ %{} :Expr (:at 1666548226186) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548226590) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666548226915) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666548227156) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666548227552) (:by |rJG4IHzWf) (:text |0) - |o $ %{} :Leaf (:at 1701538495635) (:by |rJG4IHzWf) (:text |0.1) - |h $ %{} :Expr (:at 1666548405336) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548405336) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666548405336) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548405336) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666548405336) (:by |rJG4IHzWf) (:text |200) - |h $ %{} :Leaf (:at 1701538511815) (:by |rJG4IHzWf) (:text |60) - |l $ %{} :Leaf (:at 1666548460632) (:by |rJG4IHzWf) (:text |74) - |h $ %{} :Expr (:at 1666548431424) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548435645) (:by |rJG4IHzWf) (:text "|\"$0:active") - |b $ %{} :Expr (:at 1666548436186) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548436527) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548436769) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548440740) (:by |rJG4IHzWf) (:text |:transform) - |b $ %{} :Leaf (:at 1666548484743) (:by |rJG4IHzWf) (:text "|\"scale(1.04)") - |css-p-content $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666548006032) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548007260) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666548006032) (:by |rJG4IHzWf) (:text |css-p-content) - |h $ %{} :Expr (:at 1666548006032) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548008324) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548008707) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548011174) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666548011568) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666548011568) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |1) - |h $ %{} :Expr (:at 1666548011568) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |:position) - |b $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |:absolute) - |l $ %{} :Expr (:at 1666548011568) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |:bottom) - |b $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |6) - |o $ %{} :Expr (:at 1666548011568) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |:right) - |b $ %{} :Leaf (:at 1666548011568) (:by |rJG4IHzWf) (:text |-6) - |css-replay-content $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547828802) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547830017) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547828802) (:by |rJG4IHzWf) (:text |css-replay-content) - |h $ %{} :Expr (:at 1666547828802) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547831071) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547831355) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547832472) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547833401) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547833401) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |:black) - |h $ %{} :Expr (:at 1666547833401) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |14) - |l $ %{} :Expr (:at 1666547833401) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |:font-weight) - |b $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |:bold) - |o $ %{} :Expr (:at 1666547833401) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666547833401) (:by |rJG4IHzWf) (:text |ui/font-normal) - |css-reply $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1650952208399) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547640811) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547639514) (:by |rJG4IHzWf) (:text |css-reply) - |h $ %{} :Expr (:at 1666547641933) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547642464) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1666547643127) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1666547644852) (:by |rJG4IHzWf) (:text "|\"$0") - |T $ %{} :Expr (:at 1695395577564) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1695395578363) (:by |rJG4IHzWf) (:text |merge) - |L $ %{} :Leaf (:at 1695395578744) (:by |rJG4IHzWf) (:text |style-reply-box) - |T $ %{} :Expr (:at 1650952208399) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1650952208399) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text "|\"8px 16px") - |l $ %{} :Expr (:at 1650952208399) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |:border-style) - |b $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |:solid) - |o $ %{} :Expr (:at 1650952208399) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |:border-width) - |b $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text "|\"1px 1px 2px 1px") - |s $ %{} :Expr (:at 1650952208399) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |:margin-bottom) - |b $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |16) - |t $ %{} :Expr (:at 1650952208399) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952208399) (:by |rJG4IHzWf) (:text |:border-radius) - |b $ %{} :Leaf (:at 1666548515175) (:by |rJG4IHzWf) (:text "|\"8px") - |u $ %{} :Expr (:at 1666548522764) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548522764) (:by |rJG4IHzWf) (:text |:border-color) - |b $ %{} :Expr (:at 1666548522764) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548522764) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666548522764) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666548522764) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666548522764) (:by |rJG4IHzWf) (:text |88) - |v $ %{} :Expr (:at 1666548525971) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548525971) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666548525971) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666548525971) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666548525971) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666548525971) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666548525971) (:by |rJG4IHzWf) (:text |99) - |w $ %{} :Expr (:at 1695486405285) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695486405633) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1695486407869) (:by |rJG4IHzWf) (:text |1) - |X $ %{} :Expr (:at 1695486729605) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695486860116) (:by |rJG4IHzWf) (:text "|\"&::-webkit-scrollbar") - |b $ %{} :Expr (:at 1695486735412) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695486736545) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1695486740531) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695486742581) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1695486888261) (:by |rJG4IHzWf) (:text "|\"0px") - |h $ %{} :Expr (:at 1695486740531) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695486746677) (:by |rJG4IHzWf) (:text |:height) - |b $ %{} :Leaf (:at 1695486889764) (:by |rJG4IHzWf) (:text "|\"0px") - |b $ %{} :Expr (:at 1666550165265) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666550170254) (:by |rJG4IHzWf) (:text "|\"$0:hover") - |b $ %{} :Expr (:at 1666550170515) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666550170850) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666550173768) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666550173768) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666550173768) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666550173768) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666550173768) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666550173768) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666550175842) (:by |rJG4IHzWf) (:text |100) - |h $ %{} :Expr (:at 1666550316671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666550316671) (:by |rJG4IHzWf) (:text |:box-shadow) - |b $ %{} :Expr (:at 1666550316671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666550316671) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1666550319811) (:by |rJG4IHzWf) (:text "|\"0px 2px 2px ") - |h $ %{} :Expr (:at 1666550316671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666550316671) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666550316671) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666550316671) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666550316671) (:by |rJG4IHzWf) (:text |0) - |o $ %{} :Leaf (:at 1666550316671) (:by |rJG4IHzWf) (:text |0.1) - |css-reply-parent $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547421007) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547422299) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547421007) (:by |rJG4IHzWf) (:text |css-reply-parent) - |h $ %{} :Expr (:at 1666547421007) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547423305) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547423588) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547424767) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text "|\"8px 16px") - |h $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:border-bottom) - |b $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text "|\"1px solid ") - |h $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |80) - |l $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:max-height) - |b $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |200) - |o $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:overflow) - |b $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:hidden) - |q $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:text-overflow) - |b $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:ellipsis) - |s $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666547425233) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666547425233) (:by |rJG4IHzWf) (:text |100) - |css-reply-parent-content $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547501443) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547503091) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547614057) (:by |rJG4IHzWf) (:text |css-reply-parent-content) - |h $ %{} :Expr (:at 1666547501443) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547504430) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547504719) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547505873) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547506266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547506266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text "|\"22px") - |h $ %{} :Expr (:at 1666547506266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:white-space) - |b $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:nowrap) - |l $ %{} :Expr (:at 1666547506266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:max-height) - |b $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |22) - |o $ %{} :Expr (:at 1666547506266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:overflow) - |b $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:hidden) - |q $ %{} :Expr (:at 1666547506266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:text-overflow) - |b $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:ellipsis) - |s $ %{} :Expr (:at 1666547506266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666547506266) (:by |rJG4IHzWf) (:text |16) - |css-topic $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547016580) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547018141) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547016580) (:by |rJG4IHzWf) (:text |css-topic) - |h $ %{} :Expr (:at 1666547016580) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547020526) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547021625) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547024880) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547025385) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547025385) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text "|\"12px 16px") - |h $ %{} :Expr (:at 1666547025385) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |:pointer) - |l $ %{} :Expr (:at 1666547025385) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |:border-bottom) - |b $ %{} :Expr (:at 1666547025385) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text "|\"1px solid ") - |h $ %{} :Expr (:at 1666547025385) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666547025385) (:by |rJG4IHzWf) (:text |93) - |css-topic-desc $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547126264) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547128117) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547126264) (:by |rJG4IHzWf) (:text |css-topic-desc) - |h $ %{} :Expr (:at 1666547126264) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547129361) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547129758) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547130999) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547131514) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547131514) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Expr (:at 1666547131514) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |50) - |h $ %{} :Expr (:at 1666547131514) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |l $ %{} :Expr (:at 1666547131514) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |12) - |o $ %{} :Expr (:at 1666547131514) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1666547131514) (:by |rJG4IHzWf) (:text "|\"16px") - |css-topic-labels $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666549430537) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549431705) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666549430537) (:by |rJG4IHzWf) (:text |css-topic-labels) - |h $ %{} :Expr (:at 1666549430537) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549433551) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549433887) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549435092) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666549435702) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549435702) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |13) - |h $ %{} :Expr (:at 1666549435702) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |l $ %{} :Expr (:at 1666549435702) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Expr (:at 1666549435702) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666549435702) (:by |rJG4IHzWf) (:text |60) - |css-topic-parent $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547339981) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547341130) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547339981) (:by |rJG4IHzWf) (:text |css-topic-parent) - |h $ %{} :Expr (:at 1666547339981) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547342410) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547342796) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547343890) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text "|\"8px 16px") - |h $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |:pointer) - |l $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |:border-bottom) - |b $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text "|\"1px solid ") - |h $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |80) - |o $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |:cursor) - |b $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |:default) - |q $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666547344319) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666547344319) (:by |rJG4IHzWf) (:text |100) - |css-topic-parent-title $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547381062) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547382567) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547381062) (:by |rJG4IHzWf) (:text |css-topic-parent-title) - |h $ %{} :Expr (:at 1666547381062) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547383896) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547384203) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385343) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:display) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:inline-block) - |h $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text "|\"0 6px") - |l $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |60) - |h $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |80) - |l $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |42) - |o $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:white) - |q $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |14) - |s $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text "|\"20px") - |t $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:border-radius) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text "|\"16px") - |u $ %{} :Expr (:at 1666547385737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666547385737) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |css-topic-score $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547083189) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547084633) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547169675) (:by |rJG4IHzWf) (:text |css-topic-score) - |h $ %{} :Expr (:at 1666547083189) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547086638) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547087693) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089422) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:display) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:inline-block) - |h $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text "|\"0 6px") - |l $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |60) - |h $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |80) - |l $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |42) - |o $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:white) - |q $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |14) - |s $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:line-height) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text "|\"20px") - |t $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:border-radius) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text "|\"16px") - |u $ %{} :Expr (:at 1666547089997) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |:font-family) - |b $ %{} :Leaf (:at 1666547089997) (:by |rJG4IHzWf) (:text |ui/font-fancy) - |css-topic-selected $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666549357298) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549358593) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666549357298) (:by |rJG4IHzWf) (:text |css-topic-selected) - |h $ %{} :Expr (:at 1666549357298) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549359766) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549360212) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549361707) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |:border-color) - |b $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |74) - |h $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |100) - |l $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |:box-shadow) - |b $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1666550273119) (:by |rJG4IHzWf) (:text "|\"0px 3px 2px ") - |h $ %{} :Expr (:at 1666549363069) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1666549363069) (:by |rJG4IHzWf) (:text |0) - |o $ %{} :Leaf (:at 1666550244998) (:by |rJG4IHzWf) (:text |0.1) - |css-topic-title $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1666547183664) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547185291) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1666547183664) (:by |rJG4IHzWf) (:text |css-topic-title) - |h $ %{} :Expr (:at 1666547183664) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547187126) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547187719) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547189390) (:by |rJG4IHzWf) (:text "|\"$0") - |b $ %{} :Expr (:at 1666547190360) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547190360) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1666547190360) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547190360) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1666547190360) (:by |rJG4IHzWf) (:text |14) - |h $ %{} :Expr (:at 1666547190360) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547190360) (:by |rJG4IHzWf) (:text |:text-overflow) - |b $ %{} :Leaf (:at 1666547190360) (:by |rJG4IHzWf) (:text |:ellipsis) - |l $ %{} :Expr (:at 1666547190360) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666547190360) (:by |rJG4IHzWf) (:text |:overflow) - |b $ %{} :Leaf (:at 1666547190360) (:by |rJG4IHzWf) (:text |:hidden) - |effect-height! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1695485718491) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485720534) (:by |rJG4IHzWf) (:text |defeffect) - |b $ %{} :Leaf (:at 1695485718491) (:by |rJG4IHzWf) (:text |effect-height!) - |h $ %{} :Expr (:at 1695485718491) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485723787) (:by |rJG4IHzWf) (:text |open?) - |l $ %{} :Expr (:at 1695485727060) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485728583) (:by |rJG4IHzWf) (:text |action) - |b $ %{} :Leaf (:at 1695485729406) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1695485730516) (:by |rJG4IHzWf) (:text |at?) - |q $ %{} :Expr (:at 1695485937354) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485937744) (:by |rJG4IHzWf) (:text |if) - |b $ %{} :Expr (:at 1695485938182) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485940234) (:by |rJG4IHzWf) (:text |or) - |b $ %{} :Expr (:at 1695485940465) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485940453) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Leaf (:at 1695485941648) (:by |rJG4IHzWf) (:text |action) - |h $ %{} :Leaf (:at 1695485944287) (:by |rJG4IHzWf) (:text |:mount) - |h $ %{} :Expr (:at 1695485945266) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485945966) (:by |rJG4IHzWf) (:text |=) - |b $ %{} :Leaf (:at 1695485947885) (:by |rJG4IHzWf) (:text |action) - |h $ %{} :Leaf (:at 1695485950021) (:by |rJG4IHzWf) (:text |:update) - |h $ %{} :Expr (:at 1695485951755) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485959308) (:by |rJG4IHzWf) (:text |->) - |b $ %{} :Leaf (:at 1695485959693) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1695485962668) (:by |rJG4IHzWf) (:text |.-style) - |l $ %{} :Leaf (:at 1695487815633) (:by |rJG4IHzWf) (:text |.-maxHeight) - |o $ %{} :Expr (:at 1695485977637) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485979087) (:by |rJG4IHzWf) (:text |set!) - |b $ %{} :Expr (:at 1695485980187) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485980876) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Expr (:at 1695487855391) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1695487855964) (:by |rJG4IHzWf) (:text |+) - |L $ %{} :Leaf (:at 1695488005318) (:by |rJG4IHzWf) (:text |16) - |T $ %{} :Expr (:at 1695485986405) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1695485991273) (:by |rJG4IHzWf) (:text |.-scrollHeight) - |T $ %{} :Leaf (:at 1695485983530) (:by |rJG4IHzWf) (:text |el) - |h $ %{} :Leaf (:at 1695485993531) (:by |rJG4IHzWf) (:text "|\"px") - |effect-load $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1587834127030) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834129637) (:by |rJG4IHzWf) (:text |defeffect) - |j $ %{} :Leaf (:at 1587834127030) (:by |rJG4IHzWf) (:text |effect-load) - |r $ %{} :Expr (:at 1587834127030) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834140251) (:by |rJG4IHzWf) (:text |topic) - |v $ %{} :Expr (:at 1587834141753) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834142977) (:by |rJG4IHzWf) (:text |action) - |j $ %{} :Leaf (:at 1587834144129) (:by |rJG4IHzWf) (:text |el) - |r $ %{} :Leaf (:at 1587834150365) (:by |rJG4IHzWf) (:text |*local) - |v $ %{} :Leaf (:at 1587834152553) (:by |rJG4IHzWf) (:text |at-place?) - |x $ %{} :Expr (:at 1587834173209) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834178112) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1587834178417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1587834178560) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834180557) (:by |rJG4IHzWf) (:text |target) - |j $ %{} :Expr (:at 1587834181222) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860872964) (:by |rJG4IHzWf) (:text |.!querySelector) - |j $ %{} :Leaf (:at 1587834188409) (:by |rJG4IHzWf) (:text |el) - |r $ %{} :Leaf (:at 1587834234916) (:by |rJG4IHzWf) (:text "|\"#frame") - |r $ %{} :Expr (:at 1587834195852) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834196820) (:by |rJG4IHzWf) (:text |when) - |j $ %{} :Expr (:at 1587834206903) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1587834208158) (:by |rJG4IHzWf) (:text |or) - |T $ %{} :Expr (:at 1587834199757) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834199889) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Leaf (:at 1587834200994) (:by |rJG4IHzWf) (:text |action) - |r $ %{} :Leaf (:at 1587834206426) (:by |rJG4IHzWf) (:text |:mount) - |j $ %{} :Expr (:at 1587834199757) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1587834199889) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Leaf (:at 1587834200994) (:by |rJG4IHzWf) (:text |action) - |r $ %{} :Leaf (:at 1587834211688) (:by |rJG4IHzWf) (:text |:update) - |v $ %{} :Expr (:at 1590296792873) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1590296794171) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1590296819047) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296819047) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Expr (:at 1590296819047) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296819047) (:by |rJG4IHzWf) (:text |:url) - |j $ %{} :Leaf (:at 1590296819047) (:by |rJG4IHzWf) (:text |topic) - |T $ %{} :Expr (:at 1590296826741) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1590296833139) (:by |rJG4IHzWf) (:text |do) - |T $ %{} :Expr (:at 1587834256201) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860876216) (:by |rJG4IHzWf) (:text |.!setAttribute) - |j $ %{} :Leaf (:at 1587834261365) (:by |rJG4IHzWf) (:text |target) - |n $ %{} :Leaf (:at 1587834469675) (:by |rJG4IHzWf) (:text "|\"src") - |t $ %{} :Expr (:at 1590296764509) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1590296765316) (:by |rJG4IHzWf) (:text |str) - |T $ %{} :Leaf (:at 1590296762153) (:by |rJG4IHzWf) (:text "|\"data:,") - |j $ %{} :Expr (:at 1590296766350) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1590296777124) (:by |rJG4IHzWf) (:text |js/encodeURIComponent) - |T $ %{} :Leaf (:at 1590296781664) (:by |rJG4IHzWf) (:text "|\"setting iframe...") - |j $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |when) - |j $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |:url) - |j $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |topic) - |r $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628851822037) (:by |rJG4IHzWf) (:text |timeout-call) - |j $ %{} :Leaf (:at 1628851823821) (:by |rJG4IHzWf) (:text |30) - |r $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |r $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860878906) (:by |rJG4IHzWf) (:text |.!setAttribute) - |j $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |target) - |r $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text "|\"src") - |v $ %{} :Expr (:at 1590296831535) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |:url) - |j $ %{} :Leaf (:at 1590296831535) (:by |rJG4IHzWf) (:text |topic) - |j $ %{} :Expr (:at 1590296838955) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860880897) (:by |rJG4IHzWf) (:text |.!setAttribute) - |j $ %{} :Leaf (:at 1590296838955) (:by |rJG4IHzWf) (:text |target) - |r $ %{} :Leaf (:at 1590296838955) (:by |rJG4IHzWf) (:text "|\"src") - |v $ %{} :Expr (:at 1590296838955) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296838955) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1590296838955) (:by |rJG4IHzWf) (:text "|\"data:,") - |r $ %{} :Expr (:at 1590296838955) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1590296838955) (:by |rJG4IHzWf) (:text |js/encodeURIComponent) - |j $ %{} :Leaf (:at 1590296855045) (:by |rJG4IHzWf) (:text "|\"no url to display.") - |html->readable $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1628860089822) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860089822) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1628860089822) (:by |rJG4IHzWf) (:text |html->readable) - |r $ %{} :Expr (:at 1628860089822) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860089822) (:by |rJG4IHzWf) (:text |html) - |v $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |el) - |j $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |js/document.createElement) - |j $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text "|\"pre") - |r $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |.-innerHTML) - |j $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |el) - |r $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |html) - |r $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860244220) (:by |rJG4IHzWf) (:text |.!replace) - |j $ %{} :Expr (:at 1641647885555) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1641647890001) (:by |rJG4IHzWf) (:text |new) - |L $ %{} :Leaf (:at 1641647893972) (:by |rJG4IHzWf) (:text |js/RegExp) - |T $ %{} :Leaf (:at 1641647895254) (:by |rJG4IHzWf) (:text "|\"

") - |j $ %{} :Leaf (:at 1641647899301) (:by |rJG4IHzWf) (:text "|\"g") - |r $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |str) - |n $ %{} :Leaf (:at 1641648014757) (:by |rJG4IHzWf) (:text "|\" ") - |r $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text "|\"

") - |s $ %{} :Leaf (:at 1641648383706) (:by |rJG4IHzWf) (:text "|\"

") - |t $ %{} :Leaf (:at 1641648016321) (:by |rJG4IHzWf) (:text "|\" ") - |v $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860246093) (:by |rJG4IHzWf) (:text |.!replace) - |n $ %{} :Expr (:at 1641647903406) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641647903406) (:by |rJG4IHzWf) (:text |new) - |j $ %{} :Leaf (:at 1641647903406) (:by |rJG4IHzWf) (:text |js/RegExp) - |r $ %{} :Leaf (:at 1641647905245) (:by |rJG4IHzWf) (:text "|\"

  • ") - |v $ %{} :Leaf (:at 1641647903406) (:by |rJG4IHzWf) (:text "|\"g") - |r $ %{} :Expr (:at 1628860092024) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |str) - |n $ %{} :Leaf (:at 1641648292179) (:by |rJG4IHzWf) (:text "|\" ") - |r $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text "|\"
  • ") - |t $ %{} :Leaf (:at 1641648293843) (:by |rJG4IHzWf) (:text "|\" ") - |v $ %{} :Expr (:at 1650431218531) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650431219272) (:by |rJG4IHzWf) (:text |->) - |T $ %{} :Expr (:at 1628860101997) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628860105342) (:by |rJG4IHzWf) (:text |.-innerText) - |T $ %{} :Leaf (:at 1628860092024) (:by |rJG4IHzWf) (:text |el) - |X $ %{} :Expr (:at 1650431302038) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431303710) (:by |rJG4IHzWf) (:text |either) - |b $ %{} :Leaf (:at 1650431304117) (:by |rJG4IHzWf) (:text "|\"") - |b $ %{} :Expr (:at 1650431220130) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431220130) (:by |rJG4IHzWf) (:text |.!replace) - |b $ %{} :Expr (:at 1650431220130) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650431220130) (:by |rJG4IHzWf) (:text |new) - |b $ %{} :Leaf (:at 1650431220130) (:by |rJG4IHzWf) (:text |js/RegExp) - |h $ %{} :Leaf (:at 1650431220130) (:by |rJG4IHzWf) (:text "|\"https?://\\S+") - |l $ %{} :Leaf (:at 1650431220130) (:by |rJG4IHzWf) (:text "|\"g") - |h $ %{} :Leaf (:at 1650431267951) (:by |rJG4IHzWf) (:text "|\".") - |markdown-reader $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1641650211907) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641650211907) (:by |rJG4IHzWf) (:text |def) - |j $ %{} :Leaf (:at 1641650211907) (:by |rJG4IHzWf) (:text |markdown-reader) - |r $ %{} :Expr (:at 1641650211907) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1641650220190) (:by |rJG4IHzWf) (:text |new) - |T $ %{} :Leaf (:at 1641650215579) (:by |rJG4IHzWf) (:text |Remarkable) - |j $ %{} :Expr (:at 1641650454094) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641650463505) (:by |rJG4IHzWf) (:text |js-object) - |j $ %{} :Expr (:at 1641650463860) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641650467346) (:by |rJG4IHzWf) (:text |:html) - |j $ %{} :Leaf (:at 1641650467894) (:by |rJG4IHzWf) (:text |true) - |pattern-lines $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1650952438338) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952438338) (:by |rJG4IHzWf) (:text |def) - |b $ %{} :Leaf (:at 1650952438338) (:by |rJG4IHzWf) (:text |pattern-lines) - |h $ %{} :Expr (:at 1650952438338) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650952440582) (:by |rJG4IHzWf) (:text |new) - |b $ %{} :Leaf (:at 1650952443438) (:by |rJG4IHzWf) (:text |js/RegExp) - |h $ %{} :Leaf (:at 1650952588990) (:by |rJG4IHzWf) (:text "|\"

    ") - |read-text! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645760341) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |read-text!) - |n $ %{} :Expr (:at 1589645761365) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628862039877) (:by |rJG4IHzWf) (:text |text) - |r $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |voices) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |js/speechSynthesis.getVoices) - |r $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |samantha-voice) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860416904) (:by |rJG4IHzWf) (:text |.!find) - |j $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |voices) - |r $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |v) - |j $ %{} :Leaf (:at 1628860684137) (:by |rJG4IHzWf) (:text |idx) - |r $ %{} :Leaf (:at 1628860686316) (:by |rJG4IHzWf) (:text |d) - |r $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |.-voiceURI) - |j $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |v) - |r $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text "|\"Samantha") - |t $ %{} :Expr (:at 1589646599579) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646610129) (:by |rJG4IHzWf) (:text |sentence) - |j $ %{} :Expr (:at 1589646614270) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628860328028) (:by |rJG4IHzWf) (:text |.!replace) - |L $ %{} :Leaf (:at 1628862042235) (:by |rJG4IHzWf) (:text |text) - |j $ %{} :Leaf (:at 1628853055439) (:by |rJG4IHzWf) (:text |url-pattern) - |r $ %{} :Expr (:at 1589646735015) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646733895) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1589646735863) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646736195) (:by |rJG4IHzWf) (:text |x) - |j $ %{} :Leaf (:at 1628860472210) (:by |rJG4IHzWf) (:text |&) - |r $ %{} :Leaf (:at 1628860474272) (:by |rJG4IHzWf) (:text |args) - |r $ %{} :Expr (:at 1589646736856) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646738405) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1589646738870) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1589646739508) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646740018) (:by |rJG4IHzWf) (:text |url) - |j $ %{} :Expr (:at 1589646741628) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628854450903) (:by |rJG4IHzWf) (:text |new) - |T $ %{} :Leaf (:at 1628854449825) (:by |rJG4IHzWf) (:text |js/URL) - |j $ %{} :Leaf (:at 1589646747002) (:by |rJG4IHzWf) (:text |x) - |r $ %{} :Expr (:at 1589646750031) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646750446) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1589646751328) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646751631) (:by |rJG4IHzWf) (:text |some?) - |j $ %{} :Leaf (:at 1589646752381) (:by |rJG4IHzWf) (:text |url) - |r $ %{} :Expr (:at 1589646766880) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1589646768489) (:by |rJG4IHzWf) (:text |str) - |L $ %{} :Leaf (:at 1589647038528) (:by |rJG4IHzWf) (:text "|\" link to ") - |T $ %{} :Expr (:at 1589646802024) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628860337329) (:by |rJG4IHzWf) (:text |.!replace) - |T $ %{} :Expr (:at 1589646752938) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646757636) (:by |rJG4IHzWf) (:text |.-host) - |j $ %{} :Leaf (:at 1589646756012) (:by |rJG4IHzWf) (:text |url) - |j $ %{} :Leaf (:at 1589646808420) (:by |rJG4IHzWf) (:text "|\"www.") - |r $ %{} :Leaf (:at 1589646809348) (:by |rJG4IHzWf) (:text "|\"") - |j $ %{} :Leaf (:at 1589646978753) (:by |rJG4IHzWf) (:text "|\" ") - |v $ %{} :Leaf (:at 1589646980799) (:by |rJG4IHzWf) (:text "|\"link ") - |v $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |instance) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628854464204) (:by |rJG4IHzWf) (:text |new) - |T $ %{} :Leaf (:at 1628854463043) (:by |rJG4IHzWf) (:text |js/SpeechSynthesisUtterance) - |j $ %{} :Leaf (:at 1589646612743) (:by |rJG4IHzWf) (:text |sentence) - |n $ %{} :Expr (:at 1589646869562) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589646870460) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Expr (:at 1589646872591) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694101870574) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1589646877550) (:by |rJG4IHzWf) (:text |sentence) - |r $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |.-rate) - |j $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |instance) - |r $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |1) - |v $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |set!) - |j $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |.-voice) - |j $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |instance) - |r $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |samantha-voice) - |x $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860412169) (:by |rJG4IHzWf) (:text |.!cancel) - |j $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |js/speechSynthesis) - |y $ %{} :Expr (:at 1589645751671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628860410233) (:by |rJG4IHzWf) (:text |.!speak) - |j $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |js/speechSynthesis) - |r $ %{} :Leaf (:at 1589645751671) (:by |rJG4IHzWf) (:text |instance) - |speech-via-api! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1628862056541) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628862056541) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1628862056541) (:by |rJG4IHzWf) (:text |speech-via-api!) - |r $ %{} :Expr (:at 1628862056541) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628862058959) (:by |rJG4IHzWf) (:text |text) - |b $ %{} :Leaf (:at 1650968673085) (:by |rJG4IHzWf) (:text |on-play) - |h $ %{} :Leaf (:at 1650968681082) (:by |rJG4IHzWf) (:text |on-next) - |v $ %{} :Expr (:at 1628862155934) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650429878694) (:by |rJG4IHzWf) (:text |synthesizeAzureSpeech) - |j $ %{} :Leaf (:at 1628862158118) (:by |rJG4IHzWf) (:text |text) - |n $ %{} :Leaf (:at 1650968197415) (:by |rJG4IHzWf) (:text |azure-key) - |q $ %{} :Leaf (:at 1650968676198) (:by |rJG4IHzWf) (:text |on-play) - |s $ %{} :Leaf (:at 1650968678323) (:by |rJG4IHzWf) (:text |on-next) - |style-address $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1701538675090) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538676907) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1701538675090) (:by |rJG4IHzWf) (:text |style-address) - |h $ %{} :Expr (:at 1701538677914) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701538678408) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1701538678803) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701538679903) (:by |rJG4IHzWf) (:text "|\"&") - |T $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text "|\"0 8px") - |h $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:overflow) - |b $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:hidden) - |l $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text "|\"100%") - |o $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |95) - |q $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:white-space) - |b $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:nowrap) - |s $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |:border-bottom) - |b $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |str) - |b $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text "|\"1px solid ") - |h $ %{} :Expr (:at 1701538677632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1701538677632) (:by |rJG4IHzWf) (:text |86) - |style-iframe-container $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1701538698823) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538700628) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1701538698823) (:by |rJG4IHzWf) (:text |style-iframe-container) - |h $ %{} :Expr (:at 1701538702002) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701538702508) (:by |rJG4IHzWf) (:text |{}) - |T $ %{} :Expr (:at 1701538703422) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1701538704647) (:by |rJG4IHzWf) (:text "|\"&") - |T $ %{} :Expr (:at 1701538701703) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701538701703) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text "|\"max(640px, 48vw)") - |h $ %{} :Expr (:at 1701538701703) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1701538701703) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |100) - |l $ %{} :Expr (:at 1701538701703) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |:margin-right) - |b $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |8) - |o $ %{} :Expr (:at 1701538701703) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text |:max-width) - |b $ %{} :Leaf (:at 1701538701703) (:by |rJG4IHzWf) (:text "|\"100vw") - |style-load $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1701536479134) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536480900) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1701536479134) (:by |rJG4IHzWf) (:text |style-load) - |h $ %{} :Expr (:at 1701536479134) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536482043) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536482404) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536483901) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1701536484409) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536484722) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536485012) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536486778) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1701536491157) (:by |rJG4IHzWf) (:text |0.5) - |h $ %{} :Expr (:at 1701536492026) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536493935) (:by |rJG4IHzWf) (:text |:font-size) - |b $ %{} :Leaf (:at 1701536494335) (:by |rJG4IHzWf) (:text |12) - |style-reply-box $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1695395551931) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395551931) (:by |rJG4IHzWf) (:text |def) - |b $ %{} :Leaf (:at 1695395551931) (:by |rJG4IHzWf) (:text |style-reply-box) - |h $ %{} :Expr (:at 1695395553803) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1695395553803) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text "|\"8px 16px") - |h $ %{} :Expr (:at 1695395553803) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text |:border-width) - |b $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text "|\"1px 1px 2px 1px") - |l $ %{} :Expr (:at 1695395553803) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text |:transition-duration) - |b $ %{} :Leaf (:at 1695487880574) (:by |rJG4IHzWf) (:text "|\"120ms") - |q $ %{} :Expr (:at 1695395553803) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text |:transition-property) - |b $ %{} :Leaf (:at 1695486440432) (:by |rJG4IHzWf) (:text "|\"max-height,height,background-color,margin-bottom,opacity") - |t $ %{} :Expr (:at 1695395553803) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1695487830534) (:by |rJG4IHzWf) (:text |;) - |T $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text |:transition-timing-function) - |b $ %{} :Leaf (:at 1695486617696) (:by |rJG4IHzWf) (:text "|\"cubic-bezier(0.155, 0.495, 0.555, 1.230)") - |tT $ %{} :Expr (:at 1695395553803) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395553803) (:by |rJG4IHzWf) (:text |:transition-timing-function) - |b $ %{} :Leaf (:at 1695487836886) (:by |rJG4IHzWf) (:text |:linear) - |u $ %{} :Expr (:at 1695485859512) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485861709) (:by |rJG4IHzWf) (:text |:overflow) - |b $ %{} :Leaf (:at 1695485863348) (:by |rJG4IHzWf) (:text |:auto) - |v $ %{} :Expr (:at 1695485873627) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695485879671) (:by |rJG4IHzWf) (:text |:max-height) - |b $ %{} :Leaf (:at 1695486202021) (:by |rJG4IHzWf) (:text |40) - |style-reply-empty $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1695320041271) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695320042761) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1695320041271) (:by |rJG4IHzWf) (:text |style-reply-empty) - |h $ %{} :Expr (:at 1695320041271) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695320043776) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1695320044072) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695320045193) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1695395546221) (:by |rJG4IHzWf) - :data $ {} - |5 $ %{} :Leaf (:at 1695395573951) (:by |rJG4IHzWf) (:text |merge) - |D $ %{} :Leaf (:at 1695395551261) (:by |rJG4IHzWf) (:text |style-reply-box) - |T $ %{} :Expr (:at 1695320045872) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695320046165) (:by |rJG4IHzWf) (:text |{}) - |X $ %{} :Expr (:at 1695395294570) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395294570) (:by |rJG4IHzWf) (:text |:padding) - |b $ %{} :Leaf (:at 1695395294570) (:by |rJG4IHzWf) (:text "|\"8px 16px") - |Z $ %{} :Expr (:at 1695395438127) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395438127) (:by |rJG4IHzWf) (:text |:border-width) - |b $ %{} :Leaf (:at 1695395438127) (:by |rJG4IHzWf) (:text "|\"1px 1px 2px 1px") - |c $ %{} :Expr (:at 1695320228219) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695320229461) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1695320248721) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695320248721) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1695320248721) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1695320248721) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1695320248721) (:by |rJG4IHzWf) (:text |99) - |o $ %{} :Leaf (:at 1695320250549) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Expr (:at 1695395608651) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695395608651) (:by |rJG4IHzWf) (:text |:margin-bottom) - |b $ %{} :Leaf (:at 1695395610126) (:by |rJG4IHzWf) (:text |0) - |o $ %{} :Expr (:at 1695486388796) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695486393575) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1695486396477) (:by |rJG4IHzWf) (:text |0.2) - |h $ %{} :Expr (:at 1695487948618) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695487948618) (:by |rJG4IHzWf) (:text "|\"&::-webkit-scrollbar") - |b $ %{} :Expr (:at 1695487948618) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695487948618) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1695487948618) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695487948618) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1695487948618) (:by |rJG4IHzWf) (:text "|\"0px") - |h $ %{} :Expr (:at 1695487948618) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1695487948618) (:by |rJG4IHzWf) (:text |:height) - |b $ %{} :Leaf (:at 1695487948618) (:by |rJG4IHzWf) (:text "|\"0px") - |style-reply-paragraph $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1701536714906) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536716217) (:by |rJG4IHzWf) (:text |defstyle) - |b $ %{} :Leaf (:at 1701536714906) (:by |rJG4IHzWf) (:text |style-reply-paragraph) - |h $ %{} :Expr (:at 1701536714906) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536717345) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536717649) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536723998) (:by |rJG4IHzWf) (:text "|\"&") - |b $ %{} :Expr (:at 1701536724571) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536724906) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536728465) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536730467) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Expr (:at 1701536730885) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536731226) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1701536731990) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1701536732257) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1701536735059) (:by |rJG4IHzWf) (:text |50) - |h $ %{} :Expr (:at 1701536869684) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536872736) (:by |rJG4IHzWf) (:text |:position) - |b $ %{} :Leaf (:at 1701536874063) (:by |rJG4IHzWf) (:text |:relative) - |l $ %{} :Expr (:at 1701536983897) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536989137) (:by |rJG4IHzWf) (:text |:transition-delay) - |b $ %{} :Leaf (:at 1701536993352) (:by |rJG4IHzWf) (:text "|\"100ms") - |e $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537810587) (:by |rJG4IHzWf) (:text "|\"&::before") - |b $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |:content) - |b $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text "|\"''") - |h $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |:width) - |b $ %{} :Leaf (:at 1701537163037) (:by |rJG4IHzWf) (:text |3) - |l $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |:position) - |b $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |:absolute) - |o $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |:height) - |b $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text "|\"100%") - |q $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |:background-color) - |b $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1701537202068) (:by |rJG4IHzWf) (:text |70) - |s $ %{} :Expr (:at 1701537014110) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537014110) (:by |rJG4IHzWf) (:text |:left) - |b $ %{} :Leaf (:at 1701537078213) (:by |rJG4IHzWf) (:text |-17) - |t $ %{} :Expr (:at 1701537027395) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537028805) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1701537087722) (:by |rJG4IHzWf) (:text |0) - |u $ %{} :Expr (:at 1701537093287) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537097731) (:by |rJG4IHzWf) (:text |:transition-duration) - |b $ %{} :Leaf (:at 1701537100591) (:by |rJG4IHzWf) (:text "|\"200ms") - |v $ %{} :Expr (:at 1701537093287) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537108525) (:by |rJG4IHzWf) (:text |:transition-delay) - |b $ %{} :Leaf (:at 1701537127996) (:by |rJG4IHzWf) (:text "|\"0ms") - |h $ %{} :Expr (:at 1701536717649) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536742022) (:by |rJG4IHzWf) (:text "|\"&:hover") - |b $ %{} :Expr (:at 1701536724571) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536724906) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701536728465) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536730467) (:by |rJG4IHzWf) (:text |:color) - |b $ %{} :Expr (:at 1701536730885) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536731226) (:by |rJG4IHzWf) (:text |hsl) - |b $ %{} :Leaf (:at 1701536731990) (:by |rJG4IHzWf) (:text |0) - |h $ %{} :Leaf (:at 1701536732257) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Leaf (:at 1701537188318) (:by |rJG4IHzWf) (:text |30) - |h $ %{} :Expr (:at 1701536999136) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536999136) (:by |rJG4IHzWf) (:text |:transition-delay) - |b $ %{} :Leaf (:at 1701537001138) (:by |rJG4IHzWf) (:text "|\"0ms") - |l $ %{} :Expr (:at 1701536717649) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537813675) (:by |rJG4IHzWf) (:text "|\"&:hover::before") - |b $ %{} :Expr (:at 1701537046417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537046750) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1701537090396) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537090396) (:by |rJG4IHzWf) (:text |:opacity) - |b $ %{} :Leaf (:at 1701537091620) (:by |rJG4IHzWf) (:text |1) - |h $ %{} :Expr (:at 1701537112632) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701537112632) (:by |rJG4IHzWf) (:text |:transition-delay) - |b $ %{} :Leaf (:at 1701537152546) (:by |rJG4IHzWf) (:text "|\"40ms") - |url-pattern $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1628853055893) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853055893) (:by |rJG4IHzWf) (:text |def) - |j $ %{} :Leaf (:at 1628853055893) (:by |rJG4IHzWf) (:text |url-pattern) - |r $ %{} :Expr (:at 1628853055893) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853059718) (:by |rJG4IHzWf) (:text |new) - |j $ %{} :Leaf (:at 1628854522978) (:by |rJG4IHzWf) (:text |js/RegExp) - |r $ %{} :Leaf (:at 1628853064261) (:by |rJG4IHzWf) (:text "|\"https?:\\S+") - :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |ns) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |app.comp.container) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:require) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at 1628851792939) (:by |rJG4IHzWf) (:text |respo-ui.core) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |hsl) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at 1516527080962) (:by |root) (:text |respo-ui.core) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:as) - |v $ %{} :Leaf (:at nil) (:by nil) (:text |ui) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at 1540958704705) (:by |root) (:text |respo.core) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |defcomp) - |l $ %{} :Leaf (:at 1573355389740) (:by |rJG4IHzWf) (:text |defeffect) - |m $ %{} :Leaf (:at 1581699982260) (:by |rJG4IHzWf) (:text |create-element) - |o $ %{} :Leaf (:at 1587833075648) (:by |rJG4IHzWf) (:text |>>) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |<>) - |v $ %{} :Leaf (:at nil) (:by nil) (:text |div) - |w $ %{} :Leaf (:at 1581175572034) (:by |rJG4IHzWf) (:text |list->) - |x $ %{} :Leaf (:at nil) (:by nil) (:text |button) - |xT $ %{} :Leaf (:at nil) (:by nil) (:text |textarea) - |y $ %{} :Leaf (:at nil) (:by nil) (:text |span) - |yT $ %{} :Leaf (:at 1552321107012) (:by |rJG4IHzWf) (:text |input) - |yb $ %{} :Leaf (:at 1581232056150) (:by |rJG4IHzWf) (:text |section) - |yj $ %{} :Leaf (:at 1581175884395) (:by |rJG4IHzWf) (:text |a) - |x $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |respo.comp.space) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |=<) - |y $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |reel.comp.reel) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-reel) - |yT $ %{} :Expr (:at 1519699088529) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1519699092590) (:by |root) (:text |respo-md.comp.md) - |r $ %{} :Leaf (:at 1519699093410) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1519699093683) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1519699096732) (:by |root) (:text |comp-md) - |yj $ %{} :Expr (:at 1521954061310) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1527788377809) (:by |root) (:text |app.config) - |r $ %{} :Leaf (:at 1521954064826) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1521954065004) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1521954067604) (:by |root) (:text |dev?) - |r $ %{} :Leaf (:at 1628861978627) (:by |rJG4IHzWf) (:text |audio-target) - |v $ %{} :Leaf (:at 1628862206349) (:by |rJG4IHzWf) (:text |audio-host) - |yr $ %{} :Expr (:at 1581174644884) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1581174648880) (:by |rJG4IHzWf) (:text |respo.comp.inspect) - |r $ %{} :Leaf (:at 1581174649682) (:by |rJG4IHzWf) (:text |:refer) - |v $ %{} :Expr (:at 1581174649918) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1581174652040) (:by |rJG4IHzWf) (:text |comp-inspect) - |yv $ %{} :Expr (:at 1581232262928) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1581232264556) (:by |rJG4IHzWf) (:text "|\"dayjs") - |n $ %{} :Leaf (:at 1628852829957) (:by |rJG4IHzWf) (:text |:default) - |r $ %{} :Leaf (:at 1581232265530) (:by |rJG4IHzWf) (:text |dayjs) - |yx $ %{} :Expr (:at 1587833710621) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1587833719504) (:by |rJG4IHzWf) (:text |respo-alerts.core) - |r $ %{} :Leaf (:at 1587833722006) (:by |rJG4IHzWf) (:text |:refer) - |v $ %{} :Expr (:at 1587833722303) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1587833734013) (:by |rJG4IHzWf) (:text |use-prompt) - |yyT $ %{} :Expr (:at 1587920727872) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1587920742558) (:by |rJG4IHzWf) (:text |feather.core) - |r $ %{} :Leaf (:at 1587920733696) (:by |rJG4IHzWf) (:text |:refer) - |v $ %{} :Expr (:at 1587920733870) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1587920735688) (:by |rJG4IHzWf) (:text |comp-icon) - |yyj $ %{} :Expr (:at 1628862135796) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628862150178) (:by |rJG4IHzWf) (:text "|\"../entry/play-audio") - |j $ %{} :Leaf (:at 1628862152275) (:by |rJG4IHzWf) (:text |:refer) - |r $ %{} :Expr (:at 1628862152563) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650429881561) (:by |rJG4IHzWf) (:text |synthesizeAzureSpeech) - |yyr $ %{} :Expr (:at 1641650169931) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641650173712) (:by |rJG4IHzWf) (:text "|\"remarkable") - |j $ %{} :Leaf (:at 1641650174463) (:by |rJG4IHzWf) (:text |:refer) - |r $ %{} :Expr (:at 1641650175452) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641650178285) (:by |rJG4IHzWf) (:text |Remarkable) - |z $ %{} :Expr (:at 1650960587871) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650960591453) (:by |rJG4IHzWf) (:text |memof.once) - |b $ %{} :Leaf (:at 1650960592352) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1650960592605) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650960597248) (:by |rJG4IHzWf) (:text |memof1-call-by) - |zD $ %{} :Expr (:at 1666546864130) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546865535) (:by |rJG4IHzWf) (:text |respo.css) - |b $ %{} :Leaf (:at 1666546881695) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1666546883160) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546885596) (:by |rJG4IHzWf) (:text |defstyle) - |zP $ %{} :Expr (:at 1666546869261) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546873205) (:by |rJG4IHzWf) (:text |respo-ui.css) - |b $ %{} :Leaf (:at 1666546874054) (:by |rJG4IHzWf) (:text |:as) - |h $ %{} :Leaf (:at 1666546877789) (:by |rJG4IHzWf) (:text |css) - |zY $ %{} :Expr (:at 1701536187896) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1701536190554) (:by |rJG4IHzWf) (:text |app.config) - |b $ %{} :Leaf (:at 1701536191000) (:by |rJG4IHzWf) (:text |:as) - |h $ %{} :Leaf (:at 1701536191699) (:by |rJG4IHzWf) (:text |config) - |app.config $ %{} :FileEntry - :defs $ {} - |audio-host $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1628862207417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628862207417) (:by |rJG4IHzWf) (:text |def) - |j $ %{} :Leaf (:at 1628862207417) (:by |rJG4IHzWf) (:text |audio-host) - |r $ %{} :Expr (:at 1628862207417) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628862209469) (:by |rJG4IHzWf) (:text |get-env) - |j $ %{} :Leaf (:at 1628862214465) (:by |rJG4IHzWf) (:text "|\"audio-host") - |audio-target $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1628861922525) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628861924697) (:by |rJG4IHzWf) (:text |def) - |j $ %{} :Leaf (:at 1628861959928) (:by |rJG4IHzWf) (:text |audio-target) - |r $ %{} :Expr (:at 1650430403380) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1650430404711) (:by |rJG4IHzWf) (:text |or) - |T $ %{} :Expr (:at 1628861922525) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628861928569) (:by |rJG4IHzWf) (:text |get-env) - |j $ %{} :Leaf (:at 1650432168454) (:by |rJG4IHzWf) (:text "|\"audio-target") - |b $ %{} :Expr (:at 1650430406806) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650430406806) (:by |rJG4IHzWf) (:text |js/localStorage.getItem) - |b $ %{} :Leaf (:at 1650430409571) (:by |rJG4IHzWf) (:text "|\"audio-target") - |dev? $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1544873875614) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |def) - |j $ %{} :Leaf (:at 1544873875614) (:by |rJG4IHzWf) (:text |dev?) - |r $ %{} :Expr (:at 1628852791725) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852792247) (:by |rJG4IHzWf) (:text |=) - |j $ %{} :Leaf (:at 1628852793836) (:by |rJG4IHzWf) (:text "|\"dev") - |r $ %{} :Expr (:at 1628852794137) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852796715) (:by |rJG4IHzWf) (:text |get-env) - |j $ %{} :Leaf (:at 1628852797910) (:by |rJG4IHzWf) (:text "|\"mode") - |n $ %{} :Leaf (:at 1650968870541) (:by |rJG4IHzWf) (:text "|\"release") - |site $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1545933382603) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1518157345496) (:by |root) (:text |def) - |j $ %{} :Leaf (:at 1518157327696) (:by |root) (:text |site) - |r $ %{} :Expr (:at 1518157327696) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1518157346643) (:by |root) (:text |{}) - |r $ %{} :Expr (:at 1527526861413) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1527526864597) (:by |root) (:text |:dev-ui) - |x $ %{} :Leaf (:at 1556700447561) (:by |rJG4IHzWf) (:text "|\"http://localhost:8100/main-fonts.css") - |v $ %{} :Expr (:at 1527526865931) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1527526868617) (:by |root) (:text |:release-ui) - |j $ %{} :Leaf (:at 1556700443008) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/favored-fonts/main-fonts.css") - |w $ %{} :Expr (:at 1528008960614) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1528008962775) (:by |root) (:text |:cdn-url) - |j $ %{} :Leaf (:at 1581156263741) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/hn-reader/") - |y $ %{} :Expr (:at 1527868456422) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1527868457305) (:by |root) (:text |:title) - |j $ %{} :Leaf (:at 1581156255373) (:by |rJG4IHzWf) (:text "|\"HN Reader") - |yT $ %{} :Expr (:at 1527868457696) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1527868458476) (:by |root) (:text |:icon) - |j $ %{} :Leaf (:at 1581156269559) (:by |rJG4IHzWf) (:text "|\"http://cdn.tiye.me/logo/memkits.png") - |yf $ %{} :Expr (:at 1544956719115) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1544956719115) (:by |rJG4IHzWf) (:text |:storage-key) - |j $ %{} :Leaf (:at 1581156258933) (:by |rJG4IHzWf) (:text "|\"hn-reader") - :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1527788237503) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |ns) - |j $ %{} :Leaf (:at 1527788237503) (:by |root) (:text |app.config) - |app.data-gather $ %{} :FileEntry - :defs $ {} - |*resource $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581174188422) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852944891) (:by |rJG4IHzWf) (:text |defatom) - |j $ %{} :Leaf (:at 1581174188422) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Expr (:at 1581174582036) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174582521) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581174583619) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174584656) (:by |rJG4IHzWf) (:text |:top10) - |j $ %{} :Expr (:at 1581174585785) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174586474) (:by |rJG4IHzWf) (:text |[]) - |r $ %{} :Expr (:at 1581174603999) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174607317) (:by |rJG4IHzWf) (:text |:topics) - |j $ %{} :Expr (:at 1581174607584) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174607945) (:by |rJG4IHzWf) (:text |{}) - |v $ %{} :Expr (:at 1581174608713) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230844814) (:by |rJG4IHzWf) (:text |:replies) - |j $ %{} :Expr (:at 1581174610617) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174611921) (:by |rJG4IHzWf) (:text |{}) - |data-get! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581227769874) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581227776672) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1694107150257) (:by |rJG4IHzWf) (:text |data-get!) - |r $ %{} :Expr (:at 1581227769874) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581227778361) (:by |rJG4IHzWf) (:text |url) - |t $ %{} :Expr (:at 1628852470896) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852473302) (:by |rJG4IHzWf) (:text |hint-fn) - |j $ %{} :Leaf (:at 1628852474594) (:by |rJG4IHzWf) (:text |async) - |u $ %{} :Expr (:at 1628852478699) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852479385) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1628852479705) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1628852479956) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852482700) (:by |rJG4IHzWf) (:text |data) - |j $ %{} :Expr (:at 1628852483100) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852484769) (:by |rJG4IHzWf) (:text |js-await) - |j $ %{} :Expr (:at 1628852501293) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852505534) (:by |rJG4IHzWf) (:text |get-url!) - |j $ %{} :Leaf (:at 1628852506920) (:by |rJG4IHzWf) (:text |url) - |n $ %{} :Expr (:at 1628855754510) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628856301830) (:by |rJG4IHzWf) (:text |;) - |T $ %{} :Leaf (:at 1628855758402) (:by |rJG4IHzWf) (:text |js/console.log) - |j $ %{} :Leaf (:at 1628855762159) (:by |rJG4IHzWf) (:text "|\"GET") - |r $ %{} :Leaf (:at 1628855763873) (:by |rJG4IHzWf) (:text |data) - |r $ %{} :Expr (:at 1628852498124) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1686586200905) (:by |rJG4IHzWf) (:text |tagging-edn) - |j $ %{} :Expr (:at 1628852498124) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852985654) (:by |rJG4IHzWf) (:text |to-calcit-data) - |j $ %{} :Leaf (:at 1628852498124) (:by |rJG4IHzWf) (:text |data) - |get-url! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581175128875) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175132439) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1581175128875) (:by |rJG4IHzWf) (:text |get-url!) - |r $ %{} :Expr (:at 1581175128875) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175139223) (:by |rJG4IHzWf) (:text |url) - |v $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |->) - |j $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |js/fetch) - |j $ %{} :Leaf (:at 1581175147160) (:by |rJG4IHzWf) (:text |url) - |r $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852537910) (:by |rJG4IHzWf) (:text |.!then) - |j $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |response) - |r $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |not=) - |j $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |200) - |r $ %{} :Expr (:at 1628852546876) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628852548556) (:by |rJG4IHzWf) (:text |.-status) - |T $ %{} :Leaf (:at 1628852546568) (:by |rJG4IHzWf) (:text |response) - |r $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852556935) (:by |rJG4IHzWf) (:text |raise) - |j $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text "|\"Code") - |r $ %{} :Expr (:at 1628852550596) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628852551740) (:by |rJG4IHzWf) (:text |.-status) - |T $ %{} :Leaf (:at 1628852550103) (:by |rJG4IHzWf) (:text |response) - |v $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852534009) (:by |rJG4IHzWf) (:text |.!json) - |j $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |response) - |x $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852539736) (:by |rJG4IHzWf) (:text |.!catch) - |j $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |error) - |r $ %{} :Expr (:at 1581175144132) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |js/console.log) - |j $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text "|\"Failed top10") - |r $ %{} :Leaf (:at 1581175144132) (:by |rJG4IHzWf) (:text |error) - |load-reply! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581235306562) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235306562) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1581235306562) (:by |rJG4IHzWf) (:text |load-reply!) - |r $ %{} :Expr (:at 1581235306562) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235310585) (:by |rJG4IHzWf) (:text |reply-id) - |t $ %{} :Expr (:at 1628853326725) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853329476) (:by |rJG4IHzWf) (:text |hint-fn) - |j $ %{} :Leaf (:at 1628853332065) (:by |rJG4IHzWf) (:text |async) - |v $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235320008) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235327578) (:by |rJG4IHzWf) (:text |reply) - |j $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852745719) (:by |rJG4IHzWf) (:text |js-await) - |j $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694107197681) (:by |rJG4IHzWf) (:text |data-get!) - |j $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853226050) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1628853236663) (:by |rJG4IHzWf) (:text "|\"https://hacker-news.firebaseio.com/v0/item/") - |n $ %{} :Leaf (:at 1628853237228) (:by |rJG4IHzWf) (:text |reply-id) - |r $ %{} :Leaf (:at 1628853233592) (:by |rJG4IHzWf) (:text "|\".json?print=pretty") - |j $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235320008) (:by |rJG4IHzWf) (:text |reply-ids) - |j $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235320008) (:by |rJG4IHzWf) (:text |:kids) - |j $ %{} :Leaf (:at 1581235329596) (:by |rJG4IHzWf) (:text |reply) - |r $ %{} :Expr (:at 1694106509846) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1694106511354) (:by |rJG4IHzWf) (:text |js-await) - |T $ %{} :Expr (:at 1581235320008) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694106597283) (:by |rJG4IHzWf) (:text |promise-all) - |j $ %{} :Leaf (:at 1581235320008) (:by |rJG4IHzWf) (:text |reply-ids) - |r $ %{} :Expr (:at 1628853385588) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628853386121) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1628853387028) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854389722) (:by |rJG4IHzWf) (:text |reply-id) - |P $ %{} :Expr (:at 1628853387601) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853392400) (:by |rJG4IHzWf) (:text |hint-fn) - |j $ %{} :Leaf (:at 1628853393696) (:by |rJG4IHzWf) (:text |async) - |T $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |reply) - |j $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |js-await) - |j $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694107176248) (:by |rJG4IHzWf) (:text |data-get!) - |j $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text "|\"https://hacker-news.firebaseio.com/v0/item/") - |r $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |reply-id) - |v $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text "|\".json?print=pretty") - |r $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |swap!) - |j $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |assoc-in) - |v $ %{} :Expr (:at 1628854396715) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |:replies) - |r $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |reply-id) - |x $ %{} :Leaf (:at 1628854396715) (:by |rJG4IHzWf) (:text |reply) - |load-top10! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581175502534) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175507814) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1581175502534) (:by |rJG4IHzWf) (:text |load-top10!) - |r $ %{} :Expr (:at 1581175502534) (:by |rJG4IHzWf) - :data $ {} - |s $ %{} :Expr (:at 1628852582624) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628852584303) (:by |rJG4IHzWf) (:text |hint-fn) - |j $ %{} :Leaf (:at 1628852585258) (:by |rJG4IHzWf) (:text |async) - |u $ %{} :Expr (:at 1581698865776) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698865776) (:by |rJG4IHzWf) (:text |swap!) - |j $ %{} :Leaf (:at 1581698865776) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at 1581698869899) (:by |rJG4IHzWf) (:text |assoc) - |v $ %{} :Leaf (:at 1581698865776) (:by |rJG4IHzWf) (:text |:top10) - |x $ %{} :Expr (:at 1581698872531) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698872202) (:by |rJG4IHzWf) (:text |[]) - |x $ %{} :Expr (:at 1581227918547) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581227919138) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1581227921860) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Expr (:at 1628853486687) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853488156) (:by |rJG4IHzWf) (:text |data) - |j $ %{} :Expr (:at 1628853488731) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853488731) (:by |rJG4IHzWf) (:text |js-await) - |j $ %{} :Expr (:at 1628853488731) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694107187025) (:by |rJG4IHzWf) (:text |data-get!) - |j $ %{} :Leaf (:at 1628853488731) (:by |rJG4IHzWf) (:text "|\"https://hacker-news.firebaseio.com/v0/topstories.json?print=pretty") - |T $ %{} :Expr (:at 1581227922108) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581227928039) (:by |rJG4IHzWf) (:text |top-ids) - |j $ %{} :Expr (:at 1581228142610) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581228144629) (:by |rJG4IHzWf) (:text |take) - |f $ %{} :Leaf (:at 1628853485065) (:by |rJG4IHzWf) (:text |data) - |p $ %{} :Leaf (:at 1628854697523) (:by |rJG4IHzWf) (:text |30) - |r $ %{} :Expr (:at 1628855322467) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628855326945) (:by |rJG4IHzWf) (:text |js-await) - |T $ %{} :Expr (:at 1581227949028) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694106588052) (:by |rJG4IHzWf) (:text |promise-all) - |f $ %{} :Leaf (:at 1628852960848) (:by |rJG4IHzWf) (:text |top-ids) - |r $ %{} :Expr (:at 1628852685643) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628852687656) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1628852688044) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855304107) (:by |rJG4IHzWf) (:text |topic-id) - |P $ %{} :Expr (:at 1628854033989) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628854038551) (:by |rJG4IHzWf) (:text |hint-fn) - |j $ %{} :Leaf (:at 1628854039338) (:by |rJG4IHzWf) (:text |async) - |T $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |topic) - |j $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |js-await) - |j $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694107164123) (:by |rJG4IHzWf) (:text |data-get!) - |j $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text "|\"https://hacker-news.firebaseio.com/v0/item/") - |r $ %{} :Expr (:at 1628855581153) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628855975943) (:by |rJG4IHzWf) (:text |wo-js-log) - |T $ %{} :Leaf (:at 1628855585721) (:by |rJG4IHzWf) (:text |topic-id) - |v $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text "|\".json?print=pretty") - |r $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |swap!) - |j $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |update) - |v $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |:top10) - |x $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |topics) - |r $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |conj) - |j $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |topics) - |r $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |topic) - |v $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |swap!) - |j $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |assoc-in) - |v $ %{} :Expr (:at 1628855311790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |:topics) - |r $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |topic-id) - |x $ %{} :Leaf (:at 1628855311790) (:by |rJG4IHzWf) (:text |topic) - |load-topic! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581230031147) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230038146) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1581230031147) (:by |rJG4IHzWf) (:text |load-topic!) - |r $ %{} :Expr (:at 1581230031147) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230036830) (:by |rJG4IHzWf) (:text |topic-id) - |u $ %{} :Expr (:at 1628853156709) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628853164397) (:by |rJG4IHzWf) (:text |hint-fn) - |T $ %{} :Leaf (:at 1628853161232) (:by |rJG4IHzWf) (:text |async) - |x $ %{} :Expr (:at 1581230345126) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581230347050) (:by |rJG4IHzWf) (:text |let) - |T $ %{} :Expr (:at 1581230348814) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1581230349614) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581230350675) (:by |rJG4IHzWf) (:text |topic) - |T $ %{} :Expr (:at 1581230714970) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628853155048) (:by |rJG4IHzWf) (:text |js-await) - |T $ %{} :Expr (:at 1581230327615) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694107192771) (:by |rJG4IHzWf) (:text |data-get!) - |j $ %{} :Expr (:at 1581230333214) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853167492) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1628853175974) (:by |rJG4IHzWf) (:text "|\"https://hacker-news.firebaseio.com/v0/item/") - |n $ %{} :Leaf (:at 1628853176674) (:by |rJG4IHzWf) (:text |topic-id) - |r $ %{} :Leaf (:at 1628853172114) (:by |rJG4IHzWf) (:text "|\".json?print=pretty") - |j $ %{} :Expr (:at 1581230353403) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230757146) (:by |rJG4IHzWf) (:text |reply-ids) - |j $ %{} :Expr (:at 1581230358670) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230360690) (:by |rJG4IHzWf) (:text |:kids) - |j $ %{} :Leaf (:at 1581230361489) (:by |rJG4IHzWf) (:text |topic) - |b $ %{} :Expr (:at 1581235991555) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235992905) (:by |rJG4IHzWf) (:text |swap!) - |j $ %{} :Leaf (:at 1581236013046) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at 1581235997451) (:by |rJG4IHzWf) (:text |assoc-in) - |v $ %{} :Expr (:at 1581235998134) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235998425) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581235999508) (:by |rJG4IHzWf) (:text |:topics) - |r $ %{} :Leaf (:at 1581236003779) (:by |rJG4IHzWf) (:text |topic-id) - |x $ %{} :Leaf (:at 1581236005970) (:by |rJG4IHzWf) (:text |topic) - |j $ %{} :Expr (:at 1628855950994) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628855953152) (:by |rJG4IHzWf) (:text |js-await) - |T $ %{} :Expr (:at 1581230362668) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694106594081) (:by |rJG4IHzWf) (:text |promise-all) - |j $ %{} :Leaf (:at 1694106591722) (:by |rJG4IHzWf) (:text |reply-ids) - |r $ %{} :Expr (:at 1628853410504) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1628853411084) (:by |rJG4IHzWf) (:text |fn) - |L $ %{} :Expr (:at 1628853411362) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855940375) (:by |rJG4IHzWf) (:text |reply-id) - |P $ %{} :Expr (:at 1628853426873) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853430120) (:by |rJG4IHzWf) (:text |hint-fn) - |j $ %{} :Leaf (:at 1628853432794) (:by |rJG4IHzWf) (:text |async) - |T $ %{} :Expr (:at 1581230416606) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230417921) (:by |rJG4IHzWf) (:text |let) - |j $ %{} :Expr (:at 1581230418134) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Expr (:at 1581230640188) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230654449) (:by |rJG4IHzWf) (:text |reply) - |j $ %{} :Expr (:at 1581230658847) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853183905) (:by |rJG4IHzWf) (:text |js-await) - |j $ %{} :Expr (:at 1581230718552) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694107170543) (:by |rJG4IHzWf) (:text |data-get!) - |j $ %{} :Expr (:at 1581230720629) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628853210663) (:by |rJG4IHzWf) (:text |str) - |j $ %{} :Leaf (:at 1628853198715) (:by |rJG4IHzWf) (:text "|\"https://hacker-news.firebaseio.com/v0/item/") - |n $ %{} :Leaf (:at 1628853199548) (:by |rJG4IHzWf) (:text |reply-id) - |r $ %{} :Leaf (:at 1628853194433) (:by |rJG4IHzWf) (:text "|\".json?print=pretty") - |r $ %{} :Expr (:at 1581230737975) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230738921) (:by |rJG4IHzWf) (:text |swap!) - |j $ %{} :Leaf (:at 1581230832760) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at 1581230836013) (:by |rJG4IHzWf) (:text |assoc-in) - |v $ %{} :Expr (:at 1581230836348) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230836607) (:by |rJG4IHzWf) (:text |[]) - |j $ %{} :Leaf (:at 1581230848528) (:by |rJG4IHzWf) (:text |:replies) - |r $ %{} :Leaf (:at 1581230852280) (:by |rJG4IHzWf) (:text |reply-id) - |x $ %{} :Leaf (:at 1581230854427) (:by |rJG4IHzWf) (:text |reply) - |on-operation $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581174201362) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174201362) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1581174201362) (:by |rJG4IHzWf) (:text |on-operation) - |r $ %{} :Expr (:at 1581174201362) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174226978) (:by |rJG4IHzWf) (:text |op) - |x $ %{} :Expr (:at 1581174688372) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746348155) (:by |rJG4IHzWf) (:text |tag-match) - |j $ %{} :Leaf (:at 1581174692382) (:by |rJG4IHzWf) (:text |op) - |r $ %{} :Expr (:at 1581174693027) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1688746338979) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174698209) (:by |rJG4IHzWf) (:text |:load-top10) - |j $ %{} :Expr (:at 1581175498126) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581175502144) (:by |rJG4IHzWf) (:text |load-top10!) - |v $ %{} :Expr (:at 1581174701243) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1688746340179) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174721909) (:by |rJG4IHzWf) (:text |:load-topic) - |b $ %{} :Leaf (:at 1688746341670) (:by |rJG4IHzWf) (:text |d) - |j $ %{} :Expr (:at 1581174722677) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230027043) (:by |rJG4IHzWf) (:text |load-topic!) - |j $ %{} :Leaf (:at 1688746342872) (:by |rJG4IHzWf) (:text |d) - |x $ %{} :Expr (:at 1581174723938) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1688746343859) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235350236) (:by |rJG4IHzWf) (:text |:load-reply) - |b $ %{} :Leaf (:at 1688746344522) (:by |rJG4IHzWf) (:text |d) - |j $ %{} :Expr (:at 1581174733452) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581235303352) (:by |rJG4IHzWf) (:text |load-reply!) - |j $ %{} :Leaf (:at 1688746345346) (:by |rJG4IHzWf) (:text |d) - |y $ %{} :Expr (:at 1688746350790) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746352313) (:by |rJG4IHzWf) (:text |_) - |b $ %{} :Expr (:at 1688746352741) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746352741) (:by |rJG4IHzWf) (:text |do) - |b $ %{} :Expr (:at 1688746352741) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746355502) (:by |rJG4IHzWf) (:text |eprintln) - |b $ %{} :Leaf (:at 1688746352741) (:by |rJG4IHzWf) (:text "|\"Unknown op") - |h $ %{} :Leaf (:at 1688746352741) (:by |rJG4IHzWf) (:text |op) - :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1581172105908) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581172105908) (:by |rJG4IHzWf) (:text |ns) - |j $ %{} :Leaf (:at 1581172105908) (:by |rJG4IHzWf) (:text |app.data-gather) - |n $ %{} :Expr (:at 1694106489482) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694106490181) (:by |rJG4IHzWf) (:text |:require) - |b $ %{} :Expr (:at 1694106490931) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694106491491) (:by |rJG4IHzWf) (:text "|\"@calcit/std") - |b $ %{} :Leaf (:at 1694106492988) (:by |rJG4IHzWf) (:text |:refer) - |h $ %{} :Expr (:at 1694106493201) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1694106496429) (:by |rJG4IHzWf) (:text |promise-for) - |b $ %{} :Leaf (:at 1694106499581) (:by |rJG4IHzWf) (:text |promise-all) - |app.main $ %{} :FileEntry - :defs $ {} - |*reel $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at 1628851649097) (:by |rJG4IHzWf) (:text |defatom) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |*reel) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |D $ %{} :Leaf (:at nil) (:by nil) (:text |->) - |T $ %{} :Leaf (:at nil) (:by nil) (:text |reel-schema/reel) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |assoc) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |:base) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |schema/store) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |assoc) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |:store) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |schema/store) - |dispatch! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |defn) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |dispatch!) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |op) - |t $ %{} :Expr (:at 1547437686766) (:by |root) - :data $ {} - |D $ %{} :Leaf (:at 1547437687530) (:by |root) (:text |when) - |L $ %{} :Leaf (:at 1547437691006) (:by |root) (:text |config/dev?) - |T $ %{} :Expr (:at 1518156274050) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1518156276516) (:by |root) (:text |println) - |r $ %{} :Leaf (:at 1547437698992) (:by |root) (:text "|\"Dispatch:") - |v $ %{} :Leaf (:at 1518156280471) (:by |root) (:text |op) - |v $ %{} :Expr (:at 1581174319636) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1581174327946) (:by |rJG4IHzWf) (:text |if) - |L $ %{} :Expr (:at 1581174328551) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174341641) (:by |rJG4IHzWf) (:text |contains?) - |j $ %{} :Expr (:at 1581174343086) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174343867) (:by |rJG4IHzWf) (:text |#{}) - |j $ %{} :Leaf (:at 1581174389019) (:by |rJG4IHzWf) (:text |:load-top10) - |r $ %{} :Leaf (:at 1581174713684) (:by |rJG4IHzWf) (:text |:load-topic) - |v $ %{} :Leaf (:at 1581235356677) (:by |rJG4IHzWf) (:text |:load-reply) - |r $ %{} :Expr (:at 1688746489830) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1688746491909) (:by |rJG4IHzWf) (:text |nth) - |T $ %{} :Leaf (:at 1581174525759) (:by |rJG4IHzWf) (:text |op) - |b $ %{} :Leaf (:at 1688746492931) (:by |rJG4IHzWf) (:text |0) - |P $ %{} :Expr (:at 1581174446483) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174451211) (:by |rJG4IHzWf) (:text |on-operation) - |j $ %{} :Leaf (:at 1581174453554) (:by |rJG4IHzWf) (:text |op) - |T $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |reset!) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |*reel) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |reel-updater) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |updater) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |@*reel) - |v $ %{} :Leaf (:at nil) (:by nil) (:text |op) - |main! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |defn) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |main!) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |s $ %{} :Expr (:at 1628855686862) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855687344) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Leaf (:at 1628855692381) (:by |rJG4IHzWf) (:text |config/dev?) - |r $ %{} :Expr (:at 1628855693222) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855700785) (:by |rJG4IHzWf) (:text |load-console-formatter!) - |t $ %{} :Expr (:at 1544874433785) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1544874434638) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Leaf (:at 1544874509800) (:by |rJG4IHzWf) (:text "|\"Running mode:") - |r $ %{} :Expr (:at 1544874440404) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1544874440190) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Leaf (:at 1544874446442) (:by |rJG4IHzWf) (:text |config/dev?) - |r $ %{} :Leaf (:at 1544874449063) (:by |rJG4IHzWf) (:text "|\"dev") - |v $ %{} :Leaf (:at 1544874452316) (:by |rJG4IHzWf) (:text "|\"release") - |x $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |render-app!) - |y $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |add-watch) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |*reel) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:changes) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |fn) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at 1628854669761) (:by |rJG4IHzWf) (:text |r) - |j $ %{} :Leaf (:at 1628854670662) (:by |rJG4IHzWf) (:text |p) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |render-app!) - |y5 $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |add-watch) - |j $ %{} :Leaf (:at 1581174548517) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:changes) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |fn) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at 1628854672760) (:by |rJG4IHzWf) (:text |r) - |j $ %{} :Leaf (:at 1628854673422) (:by |rJG4IHzWf) (:text |p) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |render-app!) - |yD $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |listen-devtools!) - |j $ %{} :Leaf (:at 1628860824428) (:by |rJG4IHzWf) (:text ||k) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |dispatch!) - |yL $ %{} :Expr (:at 1518157357847) (:by |root) - :data $ {} - |L $ %{} :Leaf (:at 1666546857149) (:by |rJG4IHzWf) (:text |;) - |j $ %{} :Leaf (:at 1666546467784) (:by |rJG4IHzWf) (:text |js/window.addEventListener) - |r $ %{} :Leaf (:at 1518157458163) (:by |root) (:text ||beforeunload) - |v $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!) - |yP $ %{} :Expr (:at 1518157492640) (:by |root) - :data $ {} - |D $ %{} :Leaf (:at 1581658950539) (:by |rJG4IHzWf) (:text |;) - |T $ %{} :Leaf (:at 1518157495438) (:by |root) (:text |let) - |j $ %{} :Expr (:at 1518157495644) (:by |root) - :data $ {} - |T $ %{} :Expr (:at 1518157495826) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1518157496930) (:by |root) (:text |raw) - |j $ %{} :Expr (:at 1518157497615) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1666546472979) (:by |rJG4IHzWf) (:text |js/localStorage.getItem) - |r $ %{} :Expr (:at 1518157506313) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1544956709260) (:by |rJG4IHzWf) (:text |:storage-key) - |j $ %{} :Leaf (:at 1527788293499) (:by |root) (:text |config/site) - |r $ %{} :Expr (:at 1518157514334) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1533919640958) (:by |rJG4IHzWf) (:text |when) - |j $ %{} :Expr (:at 1518157515117) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1518157515786) (:by |root) (:text |some?) - |j $ %{} :Leaf (:at 1518157516878) (:by |root) (:text |raw) - |r $ %{} :Expr (:at 1518157521635) (:by |root) - :data $ {} - |T $ %{} :Leaf (:at 1518157523818) (:by |root) (:text |dispatch!) - |j $ %{} :Leaf (:at 1518157669936) (:by |root) (:text |:hydrate-storage) - |r $ %{} :Expr (:at 1581658945764) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546495225) (:by |rJG4IHzWf) (:text |parse-cirru-edn) - |j $ %{} :Leaf (:at 1581658945764) (:by |rJG4IHzWf) (:text |raw) - |yQ $ %{} :Expr (:at 1581698604088) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650732799002) (:by |rJG4IHzWf) (:text |if-let) - |Z $ %{} :Expr (:at 1650732800141) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650732801108) (:by |rJG4IHzWf) (:text |id) - |b $ %{} :Expr (:at 1650732803253) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650732803253) (:by |rJG4IHzWf) (:text |get-env) - |b $ %{} :Leaf (:at 1650732803253) (:by |rJG4IHzWf) (:text "|\"id") - |r $ %{} :Expr (:at 1581698633432) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650732811593) (:by |rJG4IHzWf) (:text |do) - |r $ %{} :Expr (:at 1581698665782) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698668292) (:by |rJG4IHzWf) (:text |dispatch!) - |b $ %{} :Expr (:at 1688746458414) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1688746459202) (:by |rJG4IHzWf) (:text |::) - |T $ %{} :Leaf (:at 1581698675732) (:by |rJG4IHzWf) (:text |:load-topic) - |b $ %{} :Leaf (:at 1688746459969) (:by |rJG4IHzWf) (:text |id) - |v $ %{} :Expr (:at 1581698721737) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698727556) (:by |rJG4IHzWf) (:text |dispatch!) - |j $ %{} :Expr (:at 1688746442829) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1688746443519) (:by |rJG4IHzWf) (:text |::) - |T $ %{} :Leaf (:at 1581698733017) (:by |rJG4IHzWf) (:text |:router) - |b $ %{} :Expr (:at 1688746444808) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746444808) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1688746444808) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746444808) (:by |rJG4IHzWf) (:text |:data) - |b $ %{} :Expr (:at 1688746444808) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746444808) (:by |rJG4IHzWf) (:text |[]) - |b $ %{} :Leaf (:at 1688746444808) (:by |rJG4IHzWf) (:text |id) - |v $ %{} :Expr (:at 1581698680103) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581698680103) (:by |rJG4IHzWf) (:text |dispatch!) - |j $ %{} :Expr (:at 1688746446647) (:by |rJG4IHzWf) - :data $ {} - |D $ %{} :Leaf (:at 1688746447306) (:by |rJG4IHzWf) (:text |::) - |T $ %{} :Leaf (:at 1581698680103) (:by |rJG4IHzWf) (:text |:load-top10) - |yT $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |println) - |j $ %{} :Leaf (:at nil) (:by nil) (:text "||App started.") - |mount-target $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |def) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |mount-target) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at 1701536108190) (:by |rJG4IHzWf) (:text |js/document.querySelector) - |r $ %{} :Leaf (:at nil) (:by nil) (:text ||.app) - |persist-storage! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1533919517365) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |persist-storage!) - |r $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628855610059) (:by |rJG4IHzWf) (:text |e) - |v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1666546507471) (:by |rJG4IHzWf) (:text |js/localStorage.setItem) - |r $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1544956703087) (:by |rJG4IHzWf) (:text |:storage-key) - |j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |config/site) - |v $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1666546512682) (:by |rJG4IHzWf) (:text |format-cirru-edn) - |j $ %{} :Expr (:at 1533919515671) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |:store) - |j $ %{} :Leaf (:at 1533919515671) (:by |rJG4IHzWf) (:text |@*reel) - |reload! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |reload!) - |r $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |v $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |if) - |j $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |nil?) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |build-errors) - |r $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |do) - |j $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |remove-watch) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |*reel) - |r $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |:changes) - |r $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |clear-cache!) - |v $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |add-watch) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |*reel) - |r $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |:changes) - |v $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |fn) - |j $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |reel) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |prev) - |r $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |render-app!) - |x $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |reset!) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |*reel) - |r $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |refresh-reel) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |@*reel) - |r $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |schema/store) - |v $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |updater) - |y $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |hud!) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text "|\"ok~") - |r $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text "|\"Ok") - |v $ %{} :Expr (:at 1628856402359) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |hud!) - |j $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text "|\"error") - |r $ %{} :Leaf (:at 1628856402359) (:by |rJG4IHzWf) (:text |build-errors) - |render-app! $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |defn) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |render-app!) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at 1628860800602) (:by |rJG4IHzWf) (:text |render!) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |mount-target) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |comp-container) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |@*reel) - |r $ %{} :Leaf (:at 1581174560074) (:by |rJG4IHzWf) (:text |@*resource) - |v $ %{} :Leaf (:at 1628852933100) (:by |rJG4IHzWf) (:text |dispatch!) - |snippets $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at 1551977434239) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1551977434239) (:by |rJG4IHzWf) (:text |defn) - |j $ %{} :Leaf (:at 1551977434239) (:by |rJG4IHzWf) (:text |snippets) - |r $ %{} :Expr (:at 1551977434239) (:by |rJG4IHzWf) - :data $ {} - |v $ %{} :Expr (:at 1551977444630) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1551977458023) (:by |rJG4IHzWf) (:text |println) - |j $ %{} :Leaf (:at 1551977477010) (:by |rJG4IHzWf) (:text |config/cdn?) - :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |ns) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |app.main) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:require) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |respo.core) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |render!) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |clear-cache!) - |v $ %{} :Leaf (:at nil) (:by nil) (:text |realize-ssr!) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |app.comp.container) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |comp-container) - |y $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |app.updater) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |updater) - |yT $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |app.schema) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:as) - |v $ %{} :Leaf (:at nil) (:by nil) (:text |schema) - |yj $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |reel.util) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at 1518156292092) (:by |root) (:text |listen-devtools!) - |yr $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |reel.core) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |reel-updater) - |q $ %{} :Leaf (:at 1518156288482) (:by |root) (:text |refresh-reel) - |yv $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |j $ %{} :Leaf (:at nil) (:by nil) (:text |reel.schema) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:as) - |v $ %{} :Leaf (:at nil) (:by nil) (:text |reel-schema) - |yx $ %{} :Expr (:at 1518157534012) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1518157537473) (:by |root) (:text |cljs.reader) - |r $ %{} :Leaf (:at 1518157538193) (:by |root) (:text |:refer) - |v $ %{} :Expr (:at 1518157538431) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1518157540981) (:by |root) (:text |read-string) - |yy $ %{} :Expr (:at 1527788302920) (:by |root) - :data $ {} - |j $ %{} :Leaf (:at 1527788304925) (:by |root) (:text |app.config) - |r $ %{} :Leaf (:at 1527788306048) (:by |root) (:text |:as) - |v $ %{} :Leaf (:at 1527788306884) (:by |root) (:text |config) - |yyj $ %{} :Expr (:at 1581174457480) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1581174466822) (:by |rJG4IHzWf) (:text |app.data-gather) - |r $ %{} :Leaf (:at 1581174468452) (:by |rJG4IHzWf) (:text |:refer) - |v $ %{} :Expr (:at 1581174468633) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1581174476196) (:by |rJG4IHzWf) (:text |*resource) - |r $ %{} :Leaf (:at 1581174504620) (:by |rJG4IHzWf) (:text |on-operation) - |yyr $ %{} :Expr (:at 1581698687122) (:by |rJG4IHzWf) - :data $ {} - |j $ %{} :Leaf (:at 1581698689923) (:by |rJG4IHzWf) (:text |clojure.string) - |r $ %{} :Leaf (:at 1581698690809) (:by |rJG4IHzWf) (:text |:as) - |v $ %{} :Leaf (:at 1581698691636) (:by |rJG4IHzWf) (:text |string) - |yyv $ %{} :Expr (:at 1628856418437) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856418437) (:by |rJG4IHzWf) (:text "|\"./calcit.build-errors") - |j $ %{} :Leaf (:at 1628856418437) (:by |rJG4IHzWf) (:text |:default) - |r $ %{} :Leaf (:at 1628856418437) (:by |rJG4IHzWf) (:text |build-errors) - |yyx $ %{} :Expr (:at 1628856422431) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1628856422431) (:by |rJG4IHzWf) (:text "|\"bottom-tip") - |j $ %{} :Leaf (:at 1628856422431) (:by |rJG4IHzWf) (:text |:default) - |r $ %{} :Leaf (:at 1628856422431) (:by |rJG4IHzWf) (:text |hud!) - |app.schema $ %{} :FileEntry - :defs $ {} - |store $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |def) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |store) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |{}) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:states) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |{}) - |v $ %{} :Expr (:at 1581174259004) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174260028) (:by |rJG4IHzWf) (:text |:router) - |j $ %{} :Expr (:at 1581174260424) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174261449) (:by |rJG4IHzWf) (:text |{}) - |j $ %{} :Expr (:at 1581174261691) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581174268293) (:by |rJG4IHzWf) (:text |:name) - |j $ %{} :Leaf (:at 1581229698291) (:by |rJG4IHzWf) (:text |:home) - |r $ %{} :Expr (:at 1581229699261) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229699904) (:by |rJG4IHzWf) (:text |:data) - |j $ %{} :Expr (:at 1581229700150) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581229700353) (:by |rJG4IHzWf) (:text |[]) - |x $ %{} :Expr (:at 1641649594351) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641649600484) (:by |rJG4IHzWf) (:text |:highlighted) - |j $ %{} :Leaf (:at 1641649602121) (:by |rJG4IHzWf) (:text |nil) - :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |ns) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |app.schema) - |app.updater $ %{} :FileEntry - :defs $ {} - |updater $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |defn) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |updater) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |store) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |op) - |v $ %{} :Leaf (:at 1519489491135) (:by |root) (:text |op-id) - |x $ %{} :Leaf (:at 1519489492110) (:by |root) (:text |op-time) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at 1688746369261) (:by |rJG4IHzWf) (:text |tag-match) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |op) - |n $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Expr (:at 1688746375865) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:states) - |b $ %{} :Leaf (:at 1688746377526) (:by |rJG4IHzWf) (:text |cursor) - |h $ %{} :Leaf (:at 1688746377758) (:by |rJG4IHzWf) (:text |s) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at 1587832998617) (:by |rJG4IHzWf) (:text |update-states) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |store) - |l $ %{} :Leaf (:at 1688746380167) (:by |rJG4IHzWf) (:text |cursor) - |o $ %{} :Leaf (:at 1688746380541) (:by |rJG4IHzWf) (:text |s) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Expr (:at 1688746381578) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:content) - |b $ %{} :Leaf (:at 1688746383853) (:by |rJG4IHzWf) (:text |c) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |assoc) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |store) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:content) - |v $ %{} :Leaf (:at 1688746385405) (:by |rJG4IHzWf) (:text |c) - |s $ %{} :Expr (:at 1581230080583) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1688746386216) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230081412) (:by |rJG4IHzWf) (:text |:router) - |b $ %{} :Leaf (:at 1688746386643) (:by |rJG4IHzWf) (:text |d) - |j $ %{} :Expr (:at 1581230081627) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1581230082594) (:by |rJG4IHzWf) (:text |assoc) - |j $ %{} :Leaf (:at 1581230083625) (:by |rJG4IHzWf) (:text |store) - |r $ %{} :Leaf (:at 1581230084796) (:by |rJG4IHzWf) (:text |:router) - |v $ %{} :Leaf (:at 1688746388394) (:by |rJG4IHzWf) (:text |d) - |sT $ %{} :Expr (:at 1650961796530) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1688746390341) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1650961800030) (:by |rJG4IHzWf) (:text |:router-after) - |b $ %{} :Leaf (:at 1688746391935) (:by |rJG4IHzWf) (:text |idx) - |h $ %{} :Leaf (:at 1688746393233) (:by |rJG4IHzWf) (:text |reply-id) - |b $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |update) - |b $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |store) - |h $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |:router) - |l $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |fn) - |b $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |router) - |h $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |{}) - |b $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |:data) - |b $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |conj) - |b $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |.slice) - |b $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |:data) - |b $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |router) - |h $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |0) - |l $ %{} :Expr (:at 1688746396248) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |inc) - |b $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |idx) - |h $ %{} :Leaf (:at 1688746396248) (:by |rJG4IHzWf) (:text |reply-id) - |t $ %{} :Expr (:at 1518157547521) (:by |root) - :data $ {} - |T $ %{} :Expr (:at 1688746399801) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1518157657108) (:by |root) (:text |:hydrate-storage) - |b $ %{} :Leaf (:at 1688746400238) (:by |rJG4IHzWf) (:text |d) - |j $ %{} :Leaf (:at 1688746401765) (:by |rJG4IHzWf) (:text |d) - |w $ %{} :Expr (:at 1641649581370) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Expr (:at 1688746403176) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641649583797) (:by |rJG4IHzWf) (:text |:highlight) - |b $ %{} :Leaf (:at 1688746403551) (:by |rJG4IHzWf) (:text |d) - |j $ %{} :Expr (:at 1641649584426) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1641649607258) (:by |rJG4IHzWf) (:text |assoc) - |j $ %{} :Leaf (:at 1641649608251) (:by |rJG4IHzWf) (:text |store) - |r $ %{} :Leaf (:at 1641649610835) (:by |rJG4IHzWf) (:text |:highlighted) - |v $ %{} :Leaf (:at 1688746404860) (:by |rJG4IHzWf) (:text |d) - |x $ %{} :Expr (:at 1688746371601) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746372126) (:by |rJG4IHzWf) (:text |_) - |b $ %{} :Expr (:at 1688746372586) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746372586) (:by |rJG4IHzWf) (:text |do) - |b $ %{} :Expr (:at 1688746372586) (:by |rJG4IHzWf) - :data $ {} - |T $ %{} :Leaf (:at 1688746374342) (:by |rJG4IHzWf) (:text |eprintln) - |b $ %{} :Leaf (:at 1688746372586) (:by |rJG4IHzWf) (:text "|\"unknown op:") - |h $ %{} :Leaf (:at 1688746372586) (:by |rJG4IHzWf) (:text |op) - |h $ %{} :Leaf (:at 1688746372586) (:by |rJG4IHzWf) (:text |store) - :ns $ %{} :CodeEntry (:doc |) - :code $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |ns) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |app.updater) - |r $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |:require) - |j $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |[]) - |j $ %{} :Leaf (:at nil) (:by nil) (:text |respo.cursor) - |r $ %{} :Leaf (:at nil) (:by nil) (:text |:refer) - |v $ %{} :Expr (:at nil) (:by nil) - :data $ {} - |T $ %{} :Leaf (:at nil) (:by nil) (:text |[]) - |j $ %{} :Leaf (:at 1587832993984) (:by |rJG4IHzWf) (:text |update-states) - :users $ {} - |rJG4IHzWf $ {} (:avatar nil) (:id |rJG4IHzWf) (:name |chen) (:nickname |chen) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail) - |root $ {} (:avatar nil) (:id |root) (:name |root) (:nickname |root) (:password |d41d8cd98f00b204e9800998ecf8427e) (:theme :star-trail) diff --git a/compact.cirru b/compact.cirru index 41cf0e0..cd3afde 100644 --- a/compact.cirru +++ b/compact.cirru @@ -1,16 +1,16 @@ -{} (:package |app) +{} (:about "|file is generated - never edit directly; learn cr edit/tree workflows before changing") (:package |app) :configs $ {} (:init-fn |app.main/main!) (:reload-fn |app.main/reload!) (:version |0.0.1) :modules $ [] |respo.calcit/ |lilac/ |memof/ |respo-ui.calcit/ |respo-markdown.calcit/ |reel.calcit/ |alerts.calcit/ |respo-feather.calcit/ :entries $ {} :files $ {} |app.comp.container $ %{} :FileEntry :defs $ {} - |azure-key $ %{} :CodeEntry (:doc |) + |azure-key $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def azure-key $ or (get-env "\"azure-key") (js/localStorage.getItem "\"azure-key") :examples $ [] - |comp-comment-list $ %{} :CodeEntry (:doc |) + |comp-comment-list $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-comment-list (router resource highlighted) let @@ -23,10 +23,10 @@ -> coord $ map-indexed fn (idx parent-id) [] parent-id $ let - kids $ :kids - if (= 0 idx) - get-in resource $ [] :topics parent-id - get-in resource $ [] :replies parent-id + item $ if (= 0 idx) + get-in resource $ [] :topics parent-id + get-in resource $ [] :replies parent-id + kids $ or (:kids item) ([]) div {} $ :class-name (str-spaced css/column css-comment-list) if (= 0 idx) @@ -38,8 +38,12 @@ :data $ .slice coord 0 idx list-> {} (:class-name css/expand) - :style $ {} (:padding "\"40px 4px 160px 4px") + :style $ {} (:padding "\"40px 8px 160px 8px") -> kids (.to-list) + filter $ fn (reply-id) + let + reply $ get-in resource ([] :replies reply-id) + not $ reply-hidden? reply map $ fn (reply-id) [] reply-id $ let reply $ get-in resource ([] :replies reply-id) @@ -52,7 +56,7 @@ , nil , idx :examples $ [] - |comp-container $ %{} :CodeEntry (:doc |) + |comp-container $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-container (reel resource) let @@ -85,7 +89,7 @@ {} $ :bottom 0 when dev? $ comp-reel (>> states :reel) reel ({}) :examples $ [] - |comp-frame $ %{} :CodeEntry (:doc |) + |comp-frame $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-frame (topic) if (some? topic) @@ -105,15 +109,14 @@ :style $ {} (:border :none) :id "\"frame" :innerHTML "\"Not loaded." - span nil + span ({}) nil :examples $ [] - |comp-reply $ %{} :CodeEntry (:doc |) + |comp-reply $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-reply (reply selected? highlighted-idx idx) [] effect-height! $ some? reply - if - or $ nil? reply + if (nil? reply) div {} $ :class-name style-reply-empty <> (str "\"Data from network") @@ -125,20 +128,6 @@ div {} $ :class-name str-spaced "\"reply" css-reply $ if selected? css-topic-selected - div - {} $ :class-name css/row-parted - div - {} $ :class-name (str-spaced css/row-middle css-topic-labels) - <> - str $ :by reply - , css-replay-content - =< 8 nil - comp-time $ :time reply - div - {} $ :class-name css/row-middle - a $ {} (:inner-text "\"$0") (:target "\"_blank") - :href $ str "\"https://news.ycombinator.com/item?id=" (:id reply) "\"&noRedirect=true" - :class-name css-external-link let content $ :text reply paragraphs $ to-calcit-data @@ -166,7 +155,7 @@ div $ {} :innerHTML $ wo-log (.!render markdown-reader block) :style $ merge - {} (:line-height "\"20px") (:font-size 14) + {} (:line-height |21px) (:font-size 13) if (= idx highlighted-idx) {} $ :background-color (hsl 80 80 90) :on-click $ fn (e d!) @@ -174,8 +163,18 @@ = "\"A" $ -> e :event .-target .-tagName do (-> e :event .!preventDefault) (-> e :event .-target .-href js/window.open) div - {} $ :class-name css/row-parted - span nil + {} $ :class-name css-reply-footer + div + {} $ :class-name (str-spaced css/row-middle css-reply-footer-meta) + <> + str |@ $ :by reply + , css-replay-content + =< 8 nil + comp-time $ :time reply + =< 8 nil + a $ {} (:inner-text |#) (:target |_blank) + :href $ str "\"https://news.ycombinator.com/item?id=" (:id reply) "\"&noRedirect=true" + :class-name css-external-link let size $ count (:kids reply) if (> size 0) @@ -184,11 +183,10 @@ :on-click $ fn (e d!) d! $ :: :router-after idx (:id reply) d! :load-reply $ :id reply - <> (str "\"Comments: ") css-has-comment - <> size - <> (str "\"No comments.") css-no-comment + <> (str size "\" replies") css-has-comment + <> "\"No replies" css-no-comment :examples $ [] - |comp-reply-parent $ %{} :CodeEntry (:doc |) + |comp-reply-parent $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-reply-parent (reply on-close) if (nil? reply) @@ -197,35 +195,37 @@ {} :color $ hsl 0 0 80 :padding 8 - div - {} $ :class-name css-reply-parent - div - {} (:class-name css/row-middle) - :style $ {} (:width "\"100%") - comp-icon :x - {} (:font-size 14) - :color $ hsl 200 80 80 - :cursor :pointer - :line-height 1 - fn (e d!) (on-close d!) - =< 6 nil - div $ {} - :innerHTML $ :text reply - :class-name $ str-spaced css/expand css-reply-parent-content + if (reply-hidden? reply) + span ({}) nil div - {} (:class-name css/row-parted) - :style $ {} (:line-height "\"20px") + {} $ :class-name css-reply-parent div - {} $ :style - {} $ :color (hsl 0 0 60) - <> $ str "\"@" (:by reply) - =< 8 nil - comp-time $ :time reply - =< 8 nil - <> $ str "\"Comments: " - count $ :kids reply + {} (:class-name css/row-middle) + :style $ {} (:width "\"100%") + comp-icon :x + {} (:font-size 14) + :color $ hsl 200 80 80 + :cursor :pointer + :line-height 1 + fn (e d!) (on-close d!) + =< 6 nil + div $ {} + :innerHTML $ :text reply + :class-name $ str-spaced css/expand css-reply-parent-content + div + {} (:class-name css/row-parted) + :style $ {} (:line-height "\"20px") + div + {} $ :style + {} $ :color (hsl 0 0 60) + <> $ str "\"@" (:by reply) + =< 8 nil + comp-time $ :time reply + =< 8 nil + <> $ str "\"Comments: " + count $ :kids reply :examples $ [] - |comp-time $ %{} :CodeEntry (:doc |) + |comp-time $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-time (time) if (some? time) @@ -238,7 +238,7 @@ <> $ .!format time-obj "\"YYYY-MM-DD HH:mm" <> "\"nil" :examples $ [] - |comp-topic $ %{} :CodeEntry (:doc |) + |comp-topic $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-topic (topic style on-click) if (nil? topic) @@ -275,7 +275,7 @@ :target "\"_blank" :style $ {} (:text-overflow :ellipsis) (:overflow :hidden) :examples $ [] - |comp-topic-list $ %{} :CodeEntry (:doc |) + |comp-topic-list $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-topic-list (states resource focus-id) let @@ -297,7 +297,8 @@ :border-bottom $ str "\"1px solid " (hsl 0 0 90) :justify-content :flex-end a $ {} (:inner-text "\"List") (:class-name css/link) - :on-click $ fn (e d!) (d! :load-top10 nil) + :on-click $ fn (e d!) + d! $ :: :top10 if no-list? $ <> (str "\"none.") {} :color $ hsl 0 0 80 @@ -320,7 +321,7 @@ :data $ [] (:id topic) div {} $ :class-name css/row-parted - span nil + span ({}) nil a $ {} (:inner-text "\"Load") :class-name $ str-spaced css/link css/font-fancy! style-load :on-click $ fn (e d!) @@ -329,7 +330,7 @@ :data $ [] text .render load-plugin :examples $ [] - |comp-topic-parent $ %{} :CodeEntry (:doc |) + |comp-topic-parent $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defcomp comp-topic-parent (topic) if (nil? topic) @@ -350,7 +351,7 @@ =< 8 nil a $ {} :href $ str "\"https://news.ycombinator.com/item?id=" (:id topic) "\"&noRedirect=true" - :inner-text "\"$0" + :inner-text |# :target "\"_blank" div {} $ :style @@ -374,67 +375,100 @@ :target "\"_blank" :style $ {} (:text-overflow :ellipsis) (:overflow :hidden) :examples $ [] - |css-comment-list $ %{} :CodeEntry (:doc |) + |css-comment-list $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-comment-list $ {} - "\"$0" $ {} (:width 500) (:max-width "\"100vw") (:height "\"100%") (:overflow-y :auto) (:margin-right 8) - :examples $ [] - |css-external-link $ %{} :CodeEntry (:doc |) + "\"$0" $ {} (:width 468) (:max-width "\"100vw") (:height "\"100%") (:overflow-y :auto) (:margin-right 0) (:padding "\"0 8px") (:box-sizing :border-box) (:scrollbar-width :thin) + "\"&::-webkit-scrollbar" $ {} (:width "\"6px") + "\"&::-webkit-scrollbar-track" $ {} + :background-color $ hsl 0 0 100 0 + "\"&::-webkit-scrollbar-thumb" $ {} + :background-color $ hsl 0 0 78 + :border-radius "\"999px" + "\"&::-webkit-scrollbar-thumb:hover" $ {} + :background-color $ hsl 0 0 62 + :examples $ [] + |css-external-link $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-external-link $ {} - "\"$0" $ {} (:font-family ui/font-fancy) (:font-size 12) + "\"$0" $ {} (:font-family ui/font-fancy) (:font-size 11) (:line-height "\"18px") + :color $ hsl 0 0 62 + :text-decoration :none + "\"$0:hover" $ {} + :color $ hsl 0 0 46 + :text-decoration :underline :examples $ [] - |css-has-comment $ %{} :CodeEntry (:doc |) + |css-has-comment $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-has-comment $ {} - "\"$0" $ {} (:font-family ui/font-fancy) (:font-size 12) + "\"$0" $ {} (:font-family ui/font-fancy) (:font-size 11) (:line-height "\"18px") :examples $ [] - |css-no-comment $ %{} :CodeEntry (:doc |) + |css-no-comment $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-no-comment $ {} - "\"$0" $ {} (:font-family ui/font-fancy) (:font-size 12) + "\"$0" $ {} (:font-family ui/font-fancy) (:font-size 11) (:line-height "\"18px") :color $ hsl 0 0 80 :examples $ [] - |css-open-replies $ %{} :CodeEntry (:doc |) + |css-open-replies $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-open-replies $ {} "\"$0" $ {} (:display :inline-block) - :background-color $ hsl 180 40 68 - :color :white - :padding "\"0 12px" - :border-radius "\"16px" + :background-color $ hsl 180 26 76 + :color $ hsl 0 0 100 + :padding "\"0 8px" + :border-radius "\"10px" :cursor :pointer :user-select :none + :font-size 11 + :line-height "\"18px" :transition-duration "\"300ms" "\"$0:hover" $ {} - :box-shadow $ str "\"1px 1px 4px " (hsl 0 0 0 0.1) - :background-color $ hsl 200 60 74 - "\"$0:active" $ {} (:transform "\"scale(1.04)") + :box-shadow $ str "\"0 1px 2px " (hsl 0 0 0 0.06) + :background-color $ hsl 190 28 72 + "\"$0:active" $ {} (:transform "\"scale(1.02)") :examples $ [] - |css-p-content $ %{} :CodeEntry (:doc |) + |css-p-content $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-p-content $ {} "\"$0" $ {} (:line-height 1) (:position :absolute) (:bottom 6) (:right -6) :examples $ [] - |css-replay-content $ %{} :CodeEntry (:doc |) + |css-replay-content $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-replay-content $ {} - "\"$0" $ {} (:color :black) (:font-size 14) (:font-weight :bold) (:font-family ui/font-normal) + "\"$0" $ {} + :color $ hsl 0 0 52 + :font-size 12 + :font-weight 500 + :font-family ui/font-normal :examples $ [] - |css-reply $ %{} :CodeEntry (:doc |) + |css-reply $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-reply $ {} "\"$0" $ merge style-reply-box - {} (:padding "\"8px 16px") (:border-style :solid) (:border-width "\"1px 1px 2px 1px") (:margin-bottom 16) (:border-radius "\"8px") + {} (:padding "\"10px 18px") (:border-style :solid) (:border-width "\"1px") (:margin-bottom 14) (:border-radius "\"6px") :border-color $ hsl 0 0 88 - :background-color $ hsl 0 0 99 + :background-color $ hsl 0 0 98 :opacity 1 "\"&::-webkit-scrollbar" $ {} (:width "\"0px") (:height "\"0px") "\"$0:hover" $ {} - :background-color $ hsl 0 0 100 - :box-shadow $ str "\"0px 2px 2px " (hsl 0 0 0 0.1) + :background-color $ hsl 0 0 99 + :box-shadow $ str "\"0 1px 2px " (hsl 0 0 0 0.06) + :examples $ [] + |css-reply-footer $ %{} :CodeEntry (:doc |) (:schema nil) + :code $ quote + defstyle css-reply-footer $ {} + "\"$0" $ {} (:display :flex) (:align-items :center) (:justify-content :space-between) (:gap 8) (:margin-top 8) (:flex-wrap :wrap) + :examples $ [] + |css-reply-footer-meta $ %{} :CodeEntry (:doc |) (:schema nil) + :code $ quote + defstyle css-reply-footer-meta $ {} + "\"$0" $ {} (:font-size 12) + :color $ hsl 0 0 58 + :line-height "\"18px" + :flex-wrap :wrap + :row-gap 2 :examples $ [] - |css-reply-parent $ %{} :CodeEntry (:doc |) + |css-reply-parent $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-reply-parent $ {} "\"$0" $ {} (:padding "\"8px 16px") @@ -444,18 +478,18 @@ :text-overflow :ellipsis :background-color $ hsl 0 0 100 :examples $ [] - |css-reply-parent-content $ %{} :CodeEntry (:doc |) + |css-reply-parent-content $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-reply-parent-content $ {} "\"$0" $ {} (:line-height "\"22px") (:white-space :nowrap) (:max-height 22) (:overflow :hidden) (:text-overflow :ellipsis) (:font-size 16) :examples $ [] - |css-topic $ %{} :CodeEntry (:doc |) + |css-topic $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic $ {} "\"$0" $ {} (:padding "\"12px 16px") (:cursor :pointer) :border-bottom $ str "\"1px solid " (hsl 0 0 93) :examples $ [] - |css-topic-desc $ %{} :CodeEntry (:doc |) + |css-topic-desc $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic-desc $ {} "\"$0" $ {} @@ -464,13 +498,13 @@ :font-size 12 :line-height "\"16px" :examples $ [] - |css-topic-labels $ %{} :CodeEntry (:doc |) + |css-topic-labels $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic-labels $ {} "\"$0" $ {} (:font-size 13) (:font-family ui/font-fancy) :color $ hsl 0 0 60 :examples $ [] - |css-topic-parent $ %{} :CodeEntry (:doc |) + |css-topic-parent $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic-parent $ {} "\"$0" $ {} (:padding "\"8px 16px") (:cursor :pointer) @@ -478,7 +512,7 @@ :cursor :default :background-color $ hsl 0 0 100 :examples $ [] - |css-topic-parent-title $ %{} :CodeEntry (:doc |) + |css-topic-parent-title $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic-parent-title $ {} "\"$0" $ {} (:display :inline-block) (:padding "\"0 6px") @@ -489,7 +523,7 @@ :border-radius "\"16px" :font-family ui/font-fancy :examples $ [] - |css-topic-score $ %{} :CodeEntry (:doc |) + |css-topic-score $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic-score $ {} "\"$0" $ {} (:display :inline-block) (:padding "\"0 6px") @@ -500,20 +534,20 @@ :border-radius "\"16px" :font-family ui/font-fancy :examples $ [] - |css-topic-selected $ %{} :CodeEntry (:doc |) + |css-topic-selected $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic-selected $ {} "\"$0" $ {} :border-color $ hsl 0 0 74 - :background-color $ hsl 0 0 100 - :box-shadow $ str "\"0px 3px 2px " (hsl 0 0 0 0.1) + :background-color $ hsl 0 0 99 + :box-shadow $ str "\"0 1px 2px " (hsl 0 0 0 0.07) :examples $ [] - |css-topic-title $ %{} :CodeEntry (:doc |) + |css-topic-title $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle css-topic-title $ {} "\"$0" $ {} (:font-size 14) (:text-overflow :ellipsis) (:overflow :hidden) :examples $ [] - |effect-height! $ %{} :CodeEntry (:doc |) + |effect-height! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defeffect effect-height! (open?) (action el at?) if @@ -523,7 +557,7 @@ + 16 $ .-scrollHeight el , "\"px" :examples $ [] - |effect-load $ %{} :CodeEntry (:doc |) + |effect-load $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defeffect effect-load (topic) (action el *local at-place?) let @@ -540,7 +574,7 @@ .!setAttribute target "\"src" $ :url topic .!setAttribute target "\"src" $ str "\"data:," (js/encodeURIComponent "\"no url to display.") :examples $ [] - |html->readable $ %{} :CodeEntry (:doc |) + |html->readable $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn html->readable (html) let @@ -552,16 +586,16 @@ -> (.-innerText el) (either "\"") .!replace (new js/RegExp "\"https?://\\S+" "\"g") "\"." :examples $ [] - |markdown-reader $ %{} :CodeEntry (:doc |) + |markdown-reader $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def markdown-reader $ new Remarkable js-object $ :html true :examples $ [] - |pattern-lines $ %{} :CodeEntry (:doc |) + |pattern-lines $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def pattern-lines $ new js/RegExp "\"

    " :examples $ [] - |read-text! $ %{} :CodeEntry (:doc |) + |read-text! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn read-text! (text) let @@ -585,11 +619,18 @@ .!cancel js/speechSynthesis .!speak js/speechSynthesis instance :examples $ [] - |speech-via-api! $ %{} :CodeEntry (:doc |) + |reply-hidden? $ %{} :CodeEntry (:doc |) (:schema nil) + :code $ quote + defn reply-hidden? (reply) + let + content $ either (:text reply) "\"" + or (:dead reply) (:deleted reply) (= content "\"[dead]") (= content "\"[flagged]") + :examples $ [] + |speech-via-api! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn speech-via-api! (text on-play on-next) (synthesizeAzureSpeech text azure-key on-play on-next) :examples $ [] - |style-address $ %{} :CodeEntry (:doc |) + |style-address $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle style-address $ {} "\"&" $ {} (:padding "\"0 8px") (:overflow :hidden) (:width "\"100%") @@ -597,24 +638,24 @@ :white-space :nowrap :border-bottom $ str "\"1px solid " (hsl 0 0 86) :examples $ [] - |style-iframe-container $ %{} :CodeEntry (:doc |) + |style-iframe-container $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle style-iframe-container $ {} - "\"&" $ {} (:width "\"max(640px, 48vw)") + "\"&" $ {} (:width "\"max(600px, 44vw)") :background-color $ hsl 0 0 100 :margin-right 8 :max-width "\"100vw" :examples $ [] - |style-load $ %{} :CodeEntry (:doc |) + |style-load $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle style-load $ {} "\"&" $ {} (:opacity 0.5) (:font-size 12) :examples $ [] - |style-reply-box $ %{} :CodeEntry (:doc |) + |style-reply-box $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def style-reply-box $ {} (:padding "\"8px 16px") (:border-width "\"1px 1px 2px 1px") (:transition-duration "\"120ms") (:transition-property "\"max-height,height,background-color,margin-bottom,opacity") (; :transition-timing-function "\"cubic-bezier(0.155, 0.495, 0.555, 1.230)") (:transition-timing-function :linear) (:overflow :auto) (:max-height 40) :examples $ [] - |style-reply-empty $ %{} :CodeEntry (:doc |) + |style-reply-empty $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle style-reply-empty $ {} "\"&" $ merge style-reply-box @@ -624,7 +665,7 @@ :opacity 0.2 "\"&::-webkit-scrollbar" $ {} (:width "\"0px") (:height "\"0px") :examples $ [] - |style-reply-paragraph $ %{} :CodeEntry (:doc |) + |style-reply-paragraph $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defstyle style-reply-paragraph $ {} "\"&" $ {} @@ -642,11 +683,11 @@ :transition-delay "\"0ms" "\"&:hover::before" $ {} (:opacity 1) (:transition-delay "\"40ms") :examples $ [] - |url-pattern $ %{} :CodeEntry (:doc |) + |url-pattern $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def url-pattern $ new js/RegExp "\"https?:\\S+" :examples $ [] - :ns $ %{} :CodeEntry (:doc |) + :ns $ %{} :NsEntry (:doc |) :code $ quote ns app.comp.container $ :require respo-ui.core :refer $ hsl @@ -668,42 +709,43 @@ app.config :as config |app.config $ %{} :FileEntry :defs $ {} - |audio-host $ %{} :CodeEntry (:doc |) + |audio-host $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def audio-host $ get-env "\"audio-host" :examples $ [] - |audio-target $ %{} :CodeEntry (:doc |) + |audio-target $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def audio-target $ or (get-env "\"audio-target") (js/localStorage.getItem "\"audio-target") :examples $ [] - |dev? $ %{} :CodeEntry (:doc |) + |dev? $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def dev? $ = "\"dev" (get-env "\"mode" "\"release") :examples $ [] - |site $ %{} :CodeEntry (:doc |) + |site $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def site $ {} (:dev-ui "\"http://localhost:8100/main-fonts.css") (:release-ui "\"http://cdn.tiye.me/favored-fonts/main-fonts.css") (:cdn-url "\"http://cdn.tiye.me/hn-reader/") (:title "\"HN Reader") (:icon "\"http://cdn.tiye.me/logo/memkits.png") (:storage-key "\"hn-reader") :examples $ [] - :ns $ %{} :CodeEntry (:doc |) + :ns $ %{} :NsEntry (:doc |) :code $ quote (ns app.config) |app.data-gather $ %{} :FileEntry :defs $ {} - |*resource $ %{} :CodeEntry (:doc |) + |*resource $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defatom *resource $ {} :top10 $ [] :topics $ {} :replies $ {} :examples $ [] - |data-get! $ %{} :CodeEntry (:doc |) + |data-get! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote - defn data-get! (url) (hint-fn async) + defn data-get! (url) + hint-fn $ {} (:async true) let data $ js-await (get-url! url) ; js/console.log "\"GET" data tagging-edn $ to-calcit-data data :examples $ [] - |get-url! $ %{} :CodeEntry (:doc |) + |get-url! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn get-url! (url) -> (js/fetch url) @@ -714,80 +756,86 @@ .!json response .!catch $ fn (error) (js/console.log "\"Failed top10" error) :examples $ [] - |load-reply! $ %{} :CodeEntry (:doc |) + |load-reply! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote - defn load-reply! (reply-id) (hint-fn async) + defn load-reply! (reply-id) + hint-fn $ {} (:async true) let reply $ js-await data-get! $ str "\"https://hacker-news.firebaseio.com/v0/item/" reply-id "\".json?print=pretty" reply-ids $ :kids reply js-await $ promise-all reply-ids - fn (reply-id) (hint-fn async) + fn (reply-id) + hint-fn $ {} (:async true) let reply $ js-await data-get! $ str "\"https://hacker-news.firebaseio.com/v0/item/" reply-id "\".json?print=pretty" swap! *resource assoc-in ([] :replies reply-id) reply :examples $ [] - |load-top10! $ %{} :CodeEntry (:doc |) + |load-top10! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote - defn load-top10! () (hint-fn async) + defn load-top10! () + hint-fn $ {} (:async true) swap! *resource assoc :top10 $ [] let data $ js-await (data-get! "\"https://hacker-news.firebaseio.com/v0/topstories.json?print=pretty") top-ids $ take data 30 js-await $ promise-all top-ids - fn (topic-id) (hint-fn async) + fn (topic-id) + hint-fn $ {} (:async true) let topic $ js-await data-get! $ str "\"https://hacker-news.firebaseio.com/v0/item/" (wo-js-log topic-id) "\".json?print=pretty" swap! *resource update :top10 $ fn (topics) (conj topics topic) swap! *resource assoc-in ([] :topics topic-id) topic :examples $ [] - |load-topic! $ %{} :CodeEntry (:doc |) + |load-topic! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote - defn load-topic! (topic-id) (hint-fn async) + defn load-topic! (topic-id) + hint-fn $ {} (:async true) let topic $ js-await data-get! $ str "\"https://hacker-news.firebaseio.com/v0/item/" topic-id "\".json?print=pretty" reply-ids $ :kids topic swap! *resource assoc-in ([] :topics topic-id) topic js-await $ promise-all reply-ids - fn (reply-id) (hint-fn async) + fn (reply-id) + hint-fn $ {} (:async true) let reply $ js-await data-get! $ str "\"https://hacker-news.firebaseio.com/v0/item/" reply-id "\".json?print=pretty" swap! *resource assoc-in ([] :replies reply-id) reply :examples $ [] - |on-operation $ %{} :CodeEntry (:doc |) + |on-operation $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn on-operation (op) tag-match op - :load-top10 + :top10 load-top10! (:load-topic d) (load-topic! d) (:load-reply d) (load-reply! d) _ $ do (eprintln "\"Unknown op" op) :examples $ [] - :ns $ %{} :CodeEntry (:doc |) + :ns $ %{} :NsEntry (:doc |) :code $ quote ns app.data-gather $ :require "\"@calcit/std" :refer $ promise-for promise-all |app.main $ %{} :FileEntry :defs $ {} - |*reel $ %{} :CodeEntry (:doc |) + |*reel $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defatom *reel $ -> reel-schema/reel (assoc :base schema/store) (assoc :store schema/store) :examples $ [] - |dispatch! $ %{} :CodeEntry (:doc |) + |dispatch! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn dispatch! (op) when config/dev? $ println "\"Dispatch:" op if - contains? (#{} :load-top10 :load-topic :load-reply) (nth op 0) + contains? (#{} :top10 :load-topic :load-reply) (nth op 0) on-operation op reset! *reel $ reel-updater updater @*reel op :examples $ [] - |main! $ %{} :CodeEntry (:doc |) + |main! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn main! () if config/dev? $ load-console-formatter! @@ -807,20 +855,20 @@ dispatch! $ :: :load-topic id dispatch! $ :: :router {} $ :data ([] id) - dispatch! $ :: :load-top10 + dispatch! $ :: :top10 println "|App started." :examples $ [] - |mount-target $ %{} :CodeEntry (:doc |) + |mount-target $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def mount-target $ js/document.querySelector |.app :examples $ [] - |persist-storage! $ %{} :CodeEntry (:doc |) + |persist-storage! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn persist-storage! (e) js/localStorage.setItem (:storage-key config/site) format-cirru-edn $ :store @*reel :examples $ [] - |reload! $ %{} :CodeEntry (:doc |) + |reload! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn reload! () $ if (nil? build-errors) do (remove-watch *reel :changes) (clear-cache!) @@ -829,15 +877,15 @@ hud! "\"ok~" "\"Ok" hud! "\"error" build-errors :examples $ [] - |render-app! $ %{} :CodeEntry (:doc |) + |render-app! $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn render-app! () $ render! mount-target (comp-container @*reel @*resource) dispatch! :examples $ [] - |snippets $ %{} :CodeEntry (:doc |) + |snippets $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn snippets () $ println config/cdn? :examples $ [] - :ns $ %{} :CodeEntry (:doc |) + :ns $ %{} :NsEntry (:doc |) :code $ quote ns app.main $ :require respo.core :refer $ render! clear-cache! realize-ssr! @@ -855,7 +903,7 @@ "\"bottom-tip" :default hud! |app.schema $ %{} :FileEntry :defs $ {} - |store $ %{} :CodeEntry (:doc |) + |store $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote def store $ {} :states $ {} @@ -863,11 +911,11 @@ :data $ [] :highlighted nil :examples $ [] - :ns $ %{} :CodeEntry (:doc |) + :ns $ %{} :NsEntry (:doc |) :code $ quote (ns app.schema) |app.updater $ %{} :FileEntry :defs $ {} - |updater $ %{} :CodeEntry (:doc |) + |updater $ %{} :CodeEntry (:doc |) (:schema nil) :code $ quote defn updater (store op op-id op-time) tag-match op @@ -885,7 +933,7 @@ (:highlight d) (assoc store :highlighted d) _ $ do (eprintln "\"unknown op:" op) store :examples $ [] - :ns $ %{} :CodeEntry (:doc |) + :ns $ %{} :NsEntry (:doc |) :code $ quote ns app.updater $ :require [] respo.cursor :refer $ [] update-states diff --git a/deps.cirru b/deps.cirru index 1fa44e1..648b15f 100644 --- a/deps.cirru +++ b/deps.cirru @@ -1,10 +1,10 @@ -{} (:calcit-version |0.9.20) - :dependencies $ {} (|Respo/alerts.calcit |main) +{} (:calcit-version |0.12.11) + :dependencies $ {} (|Respo/alerts.calcit |0.10.9) |Respo/reel.calcit |main |Respo/respo-feather.calcit |main |Respo/respo-markdown.calcit |0.4.11 - |Respo/respo-ui.calcit |0.6.3 - |Respo/respo.calcit |0.16.21 - |calcit-lang/lilac |main - |calcit-lang/memof |main + |Respo/respo-ui.calcit |0.6.4 + |Respo/respo.calcit |0.16.32 + |calcit-lang/lilac |0.5.1 + |calcit-lang/memof |0.0.23 diff --git a/index.html b/index.html index c166da7..0ba0257 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,33 @@ - + HN Reader + + diff --git a/package.json b/package.json index 9aa00d3..0a5094d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "description": "ClojureScript workflow using Calcit Editor", "main": "index.js", - "scripts": {}, + "packageManager": "yarn@4.12.0", "repository": { "type": "git", "url": "git@github.com:mvc-works/calcit-workflow.git" @@ -13,10 +13,10 @@ "devDependencies": { "bottom-tip": "^0.1.5", "microsoft-cognitiveservices-speech-sdk": "^1.46.0", - "vite": "^7.2.2" + "vite": "^8.0.2" }, "dependencies": { - "@calcit/procs": "^0.9.20", + "@calcit/procs": "0.12.11", "@calcit/std": "^0.0.3", "dayjs": "^1.11.19", "feather-icons": "^4.29.2", diff --git a/yarn.lock b/yarn.lock index ded5e6c..f0ae68f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1,659 +1,1367 @@ -# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -# yarn lockfile v1 - - -"@calcit/procs@^0.9.20": - version "0.9.20" - resolved "https://registry.yarnpkg.com/@calcit/procs/-/procs-0.9.20.tgz#f7a3d9dfbcf1ec1d227e076000ccf9724adf35a9" - integrity sha512-vKX7lWRb+Vi9qJA/awvj9tD7oWCZ/MMxJq1Daslj8j4gwUCB511NB55eKrLsh8FFtzkYpChS2njYcB0S92jcnA== - dependencies: - "@calcit/ternary-tree" "0.0.25" - "@cirru/parser.ts" "^0.0.6" - "@cirru/writer.ts" "^0.1.5" - -"@calcit/std@^0.0.3": - version "0.0.3" - resolved "https://registry.yarnpkg.com/@calcit/std/-/std-0.0.3.tgz#b3c0636b05bdba68dafb7fea06c86f64a52b1730" - integrity sha512-9p9CuyKvz3PDd+gddnaGFQwOpVrmjBQ8F5Ej7KFwifeTLXIkOh2niECMPHS/5mffo1JgTK7zcugpX9rurxeGJQ== - -"@calcit/ternary-tree@0.0.25": - version "0.0.25" - resolved "https://registry.yarnpkg.com/@calcit/ternary-tree/-/ternary-tree-0.0.25.tgz#d467cbd9a7f89ff1fdb590e5d1551aefa6a03492" - integrity sha512-BxAAq6v7dZJDYSMX5kBVQ/eSYX7czjOS1cHM25js4yD+Q2I61RxxhD7iBaGlfNJvmgPmvYJQA5nxNmN2TEXq7A== - -"@cirru/parser.ts@^0.0.6": - version "0.0.6" - resolved "https://registry.yarnpkg.com/@cirru/parser.ts/-/parser.ts-0.0.6.tgz#b95a84e02273fcbd71ff100925782b6f86410234" - integrity sha512-qpDNPq+IuuwYjQFI+wzpd3ntbF7lwJs90v1XWyLQbL9Ru4ld4aHxVGwW/9F/QOu5mEGCMXtagCoYDf0HtOpDZg== - -"@cirru/writer.ts@^0.1.5": - version "0.1.5" - resolved "https://registry.yarnpkg.com/@cirru/writer.ts/-/writer.ts-0.1.5.tgz#890d96cd4a69609f1682932dad5d2d467abb327e" - integrity sha512-QQVFJAOIdUtVJZwT23THZOzumSDXCLMQ0yFz5DzIGlWGXPNBuB7BwUvGtRuiQrzM2XV7ALOWmNsVC7vEOjObQQ== - -"@esbuild/aix-ppc64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.12.tgz#80fcbe36130e58b7670511e888b8e88a259ed76c" - integrity sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA== - -"@esbuild/android-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.12.tgz#8aa4965f8d0a7982dc21734bf6601323a66da752" - integrity sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg== - -"@esbuild/android-arm@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.12.tgz#300712101f7f50f1d2627a162e6e09b109b6767a" - integrity sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg== - -"@esbuild/android-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.12.tgz#87dfb27161202bdc958ef48bb61b09c758faee16" - integrity sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg== - -"@esbuild/darwin-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.12.tgz#79197898ec1ff745d21c071e1c7cc3c802f0c1fd" - integrity sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg== - -"@esbuild/darwin-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.12.tgz#146400a8562133f45c4d2eadcf37ddd09718079e" - integrity sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA== - -"@esbuild/freebsd-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.12.tgz#1c5f9ba7206e158fd2b24c59fa2d2c8bb47ca0fe" - integrity sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg== - -"@esbuild/freebsd-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.12.tgz#ea631f4a36beaac4b9279fa0fcc6ca29eaeeb2b3" - integrity sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ== - -"@esbuild/linux-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.12.tgz#e1066bce58394f1b1141deec8557a5f0a22f5977" - integrity sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ== - -"@esbuild/linux-arm@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.12.tgz#452cd66b20932d08bdc53a8b61c0e30baf4348b9" - integrity sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw== - -"@esbuild/linux-ia32@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.12.tgz#b24f8acc45bcf54192c7f2f3be1b53e6551eafe0" - integrity sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA== - -"@esbuild/linux-loong64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.12.tgz#f9cfffa7fc8322571fbc4c8b3268caf15bd81ad0" - integrity sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng== - -"@esbuild/linux-mips64el@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.12.tgz#575a14bd74644ffab891adc7d7e60d275296f2cd" - integrity sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw== - -"@esbuild/linux-ppc64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.12.tgz#75b99c70a95fbd5f7739d7692befe60601591869" - integrity sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA== - -"@esbuild/linux-riscv64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.12.tgz#2e3259440321a44e79ddf7535c325057da875cd6" - integrity sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w== - -"@esbuild/linux-s390x@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.12.tgz#17676cabbfe5928da5b2a0d6df5d58cd08db2663" - integrity sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg== - -"@esbuild/linux-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.12.tgz#0583775685ca82066d04c3507f09524d3cd7a306" - integrity sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw== - -"@esbuild/netbsd-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.12.tgz#f04c4049cb2e252fe96b16fed90f70746b13f4a4" - integrity sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg== - -"@esbuild/netbsd-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.12.tgz#77da0d0a0d826d7c921eea3d40292548b258a076" - integrity sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ== - -"@esbuild/openbsd-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.12.tgz#6296f5867aedef28a81b22ab2009c786a952dccd" - integrity sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A== - -"@esbuild/openbsd-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.12.tgz#f8d23303360e27b16cf065b23bbff43c14142679" - integrity sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw== - -"@esbuild/openharmony-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/openharmony-arm64/-/openharmony-arm64-0.25.12.tgz#49e0b768744a3924be0d7fd97dd6ce9b2923d88d" - integrity sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg== - -"@esbuild/sunos-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.12.tgz#a6ed7d6778d67e528c81fb165b23f4911b9b13d6" - integrity sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w== - -"@esbuild/win32-arm64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.12.tgz#9ac14c378e1b653af17d08e7d3ce34caef587323" - integrity sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg== - -"@esbuild/win32-ia32@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.12.tgz#918942dcbbb35cc14fca39afb91b5e6a3d127267" - integrity sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ== - -"@esbuild/win32-x64@0.25.12": - version "0.25.12" - resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.12.tgz#9bdad8176be7811ad148d1f8772359041f46c6c5" - integrity sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA== - -"@rollup/rollup-android-arm-eabi@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.2.tgz#7131f3d364805067fd5596302aad9ebef1434b32" - integrity sha512-yDPzwsgiFO26RJA4nZo8I+xqzh7sJTZIWQOxn+/XOdPE31lAvLIYCKqjV+lNH/vxE2L2iH3plKxDCRK6i+CwhA== - -"@rollup/rollup-android-arm64@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.2.tgz#7ede14d7fcf7c57821a2731c04b29ccc03145d82" - integrity sha512-k8FontTxIE7b0/OGKeSN5B6j25EuppBcWM33Z19JoVT7UTXFSo3D9CdU39wGTeb29NO3XxpMNauh09B+Ibw+9g== - -"@rollup/rollup-darwin-arm64@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.2.tgz#d59bf9ed582b38838e86a17f91720c17db6575b9" - integrity sha512-A6s4gJpomNBtJ2yioj8bflM2oogDwzUiMl2yNJ2v9E7++sHrSrsQ29fOfn5DM/iCzpWcebNYEdXpaK4tr2RhfQ== - -"@rollup/rollup-darwin-x64@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.2.tgz#a76278d9b9da9f84ea7909a14d93b915d5bbe01e" - integrity sha512-e6XqVmXlHrBlG56obu9gDRPW3O3hLxpwHpLsBJvuI8qqnsrtSZ9ERoWUXtPOkY8c78WghyPHZdmPhHLWNdAGEw== - -"@rollup/rollup-freebsd-arm64@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.2.tgz#1a94821a1f565b9eaa74187632d482e4c59a1707" - integrity sha512-v0E9lJW8VsrwPux5Qe5CwmH/CF/2mQs6xU1MF3nmUxmZUCHazCjLgYvToOk+YuuUqLQBio1qkkREhxhc656ViA== - -"@rollup/rollup-freebsd-x64@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.2.tgz#aad2274680106b2b6549b1e35e5d3a7a9f1f16af" - integrity sha512-ClAmAPx3ZCHtp6ysl4XEhWU69GUB1D+s7G9YjHGhIGCSrsg00nEGRRZHmINYxkdoJehde8VIsDC5t9C0gb6yqA== - -"@rollup/rollup-linux-arm-gnueabihf@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.2.tgz#100fe4306399ffeec47318a3c9b8c0e5e8b07ddb" - integrity sha512-EPlb95nUsz6Dd9Qy13fI5kUPXNSljaG9FiJ4YUGU1O/Q77i5DYFW5KR8g1OzTcdZUqQQ1KdDqsTohdFVwCwjqg== - -"@rollup/rollup-linux-arm-musleabihf@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.2.tgz#b84634952604b950e18fa11fddebde898c5928d8" - integrity sha512-BOmnVW+khAUX+YZvNfa0tGTEMVVEerOxN0pDk2E6N6DsEIa2Ctj48FOMfNDdrwinocKaC7YXUZ1pHlKpnkja/Q== - -"@rollup/rollup-linux-arm64-gnu@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.2.tgz#dad6f2fb41c2485f29a98e40e9bd78253255dbf3" - integrity sha512-Xt2byDZ+6OVNuREgBXr4+CZDJtrVso5woFtpKdGPhpTPHcNG7D8YXeQzpNbFRxzTVqJf7kvPMCub/pcGUWgBjA== - -"@rollup/rollup-linux-arm64-musl@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.2.tgz#0f3f77c8ce9fbf982f8a8378b70a73dc6704a706" - integrity sha512-+LdZSldy/I9N8+klim/Y1HsKbJ3BbInHav5qE9Iy77dtHC/pibw1SR/fXlWyAk0ThnpRKoODwnAuSjqxFRDHUQ== - -"@rollup/rollup-linux-loong64-gnu@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.2.tgz#870bb94e9dad28bb3124ba49bd733deaa6aa2635" - integrity sha512-8ms8sjmyc1jWJS6WdNSA23rEfdjWB30LH8Wqj0Cqvv7qSHnvw6kgMMXRdop6hkmGPlyYBdRPkjJnj3KCUHV/uQ== - -"@rollup/rollup-linux-ppc64-gnu@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.2.tgz#188427d11abefc6c9926e3870b3e032170f5577c" - integrity sha512-3HRQLUQbpBDMmzoxPJYd3W6vrVHOo2cVW8RUo87Xz0JPJcBLBr5kZ1pGcQAhdZgX9VV7NbGNipah1omKKe23/g== - -"@rollup/rollup-linux-riscv64-gnu@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.2.tgz#9dec6eadbbb5abd3b76fe624dc4f006913ff4a7f" - integrity sha512-fMjKi+ojnmIvhk34gZP94vjogXNNUKMEYs+EDaB/5TG/wUkoeua7p7VCHnE6T2Tx+iaghAqQX8teQzcvrYpaQA== - -"@rollup/rollup-linux-riscv64-musl@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.2.tgz#b26ba1c80b6f104dc5bd83ed83181fc0411a0c38" - integrity sha512-XuGFGU+VwUUV5kLvoAdi0Wz5Xbh2SrjIxCtZj6Wq8MDp4bflb/+ThZsVxokM7n0pcbkEr2h5/pzqzDYI7cCgLQ== - -"@rollup/rollup-linux-s390x-gnu@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.2.tgz#dc83647189b68ad8d56a956a6fcaa4ee9c728190" - integrity sha512-w6yjZF0P+NGzWR3AXWX9zc0DNEGdtvykB03uhonSHMRa+oWA6novflo2WaJr6JZakG2ucsyb+rvhrKac6NIy+w== - -"@rollup/rollup-linux-x64-gnu@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.2.tgz#42c3b8c94e9de37bd103cb2e26fb715118ef6459" - integrity sha512-yo8d6tdfdeBArzC7T/PnHd7OypfI9cbuZzPnzLJIyKYFhAQ8SvlkKtKBMbXDxe1h03Rcr7u++nFS7tqXz87Gtw== - -"@rollup/rollup-linux-x64-musl@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.2.tgz#d0e216ee1ea16bfafe35681b899b6a05258988e5" - integrity sha512-ah59c1YkCxKExPP8O9PwOvs+XRLKwh/mV+3YdKqQ5AMQ0r4M4ZDuOrpWkUaqO7fzAHdINzV9tEVu8vNw48z0lA== - -"@rollup/rollup-openharmony-arm64@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.2.tgz#3acd0157cb8976f659442bfd8a99aca46f8a2931" - integrity sha512-4VEd19Wmhr+Zy7hbUsFZ6YXEiP48hE//KPLCSVNY5RMGX2/7HZ+QkN55a3atM1C/BZCGIgqN+xrVgtdak2S9+A== - -"@rollup/rollup-win32-arm64-msvc@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.2.tgz#3eb9e7d4d0e1d2e0850c4ee9aa2d0ddf89a8effa" - integrity sha512-IlbHFYc/pQCgew/d5fslcy1KEaYVCJ44G8pajugd8VoOEI8ODhtb/j8XMhLpwHCMB3yk2J07ctup10gpw2nyMA== - -"@rollup/rollup-win32-ia32-msvc@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.2.tgz#d69280bc6680fe19e0956e965811946d542f6365" - integrity sha512-lNlPEGgdUfSzdCWU176ku/dQRnA7W+Gp8d+cWv73jYrb8uT7HTVVxq62DUYxjbaByuf1Yk0RIIAbDzp+CnOTFg== - -"@rollup/rollup-win32-x64-gnu@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.2.tgz#d182ce91e342bad9cbb8b284cf33ac542b126ead" - integrity sha512-S6YojNVrHybQis2lYov1sd+uj7K0Q05NxHcGktuMMdIQ2VixGwAfbJ23NnlvvVV1bdpR2m5MsNBViHJKcA4ADw== - -"@rollup/rollup-win32-x64-msvc@4.53.2": - version "4.53.2" - resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.2.tgz#d9ab606437fd072b2cb7df7e54bcdc7f1ccbe8b4" - integrity sha512-k+/Rkcyx//P6fetPoLMb8pBeqJBNGx81uuf7iljX9++yNBVRDQgD04L+SVXmXmh5ZP4/WOp4mWF0kmi06PW2tA== - -"@types/estree@1.0.8": - version "1.0.8" - resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.8.tgz#958b91c991b1867ced318bedea0e215ee050726e" - integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w== - -"@types/webrtc@^0.0.37": - version "0.0.37" - resolved "https://registry.yarnpkg.com/@types/webrtc/-/webrtc-0.0.37.tgz#693663dc5de8c6c85406f6cf5661ccc1e84e4c68" - integrity sha512-JGAJC/ZZDhcrrmepU4sPLQLIOIAgs5oIK+Ieq90K8fdaNMhfdfqmYatJdgif1NDQtvrSlTOGJDUYHIDunuufOg== - -agent-base@5: - version "5.1.1" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-5.1.1.tgz#e8fb3f242959db44d63be665db7a8e739537a32c" - integrity sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g== - -agent-base@^6.0.1: - version "6.0.2" - resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" - integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== - dependencies: - debug "4" - -argparse@^1.0.10: - version "1.0.10" - resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" - integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== - dependencies: - sprintf-js "~1.0.2" - -autolinker@^3.11.0: - version "3.16.2" - resolved "https://registry.yarnpkg.com/autolinker/-/autolinker-3.16.2.tgz#6bb4f32432fc111b65659336863e653973bfbcc9" - integrity sha512-JiYl7j2Z19F9NdTmirENSUUIIL/9MytEWtmzhfmsKPCp9E+G35Y0UNCMoM9tFigxT59qSc8Ml2dlZXOCVTYwuA== - dependencies: - tslib "^2.3.0" - -bent@^7.3.12: - version "7.3.12" - resolved "https://registry.yarnpkg.com/bent/-/bent-7.3.12.tgz#e0a2775d4425e7674c64b78b242af4f49da6b035" - integrity sha512-T3yrKnVGB63zRuoco/7Ybl7BwwGZR0lceoVG5XmQyMIH9s19SV5m+a8qam4if0zQuAmOQTyPTPmsQBdAorGK3w== - dependencies: - bytesish "^0.4.1" - caseless "~0.12.0" - is-stream "^2.0.0" - -bottom-tip@^0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/bottom-tip/-/bottom-tip-0.1.5.tgz#ca81e738fba6ae956a5b4c55a78a127820c9b99e" - integrity sha512-53RCkWg6hY8M7Y9lPgU2f2bAEejQh0H6SCL9B8ufFdYAOAH/cUEwxSsBIH0AcPbOcNaSgdEJr9OhdnTUENe5bA== - dependencies: - nanoid "^4.0.1" - virtual-dom "^2.1.1" - -browser-split@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/browser-split/-/browser-split-0.0.1.tgz#7b097574f8e3ead606fb4664e64adfdda2981a93" - integrity sha512-JhvgRb2ihQhsljNda3BI8/UcRHVzrVwo3Q+P8vDtSiyobXuFpuZ9mq+MbRGMnC22CjW3RrfXdg6j6ITX8M+7Ow== - -bytesish@^0.4.1: - version "0.4.4" - resolved "https://registry.yarnpkg.com/bytesish/-/bytesish-0.4.4.tgz#f3b535a0f1153747427aee27256748cff92347e6" - integrity sha512-i4uu6M4zuMUiyfZN4RU2+i9+peJh//pXhd9x1oSe1LBkZ3LEbCoygu8W0bXTukU1Jme2txKuotpCZRaC3FLxcQ== - -camelize@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3" - integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== - -caseless@~0.12.0: - version "0.12.0" - resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" - integrity sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw== - -classnames@^2.2.5: - version "2.5.1" - resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.5.1.tgz#ba774c614be0f016da105c858e7159eae8e7687b" - integrity sha512-saHYOzhIQs6wy2sVxTM6bUDsQO4F50V9RQ22qBpEdCW+I+/Wmke2HOl6lS6dTpdxVhb88/I6+Hs+438c3lfUow== - -core-js@^3.1.3: - version "3.46.0" - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.46.0.tgz#323a092b96381a9184d0cd49ee9083b2f93373bb" - integrity sha512-vDMm9B0xnqqZ8uSBpZ8sNtRtOdmfShrvT6h2TuQGLs0Is+cR0DYbj/KWP6ALVNbWPpqA/qPLoOuppJN07humpA== - -dayjs@^1.11.19: - version "1.11.19" - resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.19.tgz#15dc98e854bb43917f12021806af897c58ae2938" - integrity sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw== - -debug@4: - version "4.4.3" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" - integrity sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA== - dependencies: - ms "^2.1.3" - -dom-walk@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/dom-walk/-/dom-walk-0.1.2.tgz#0c548bef048f4d1f2a97249002236060daa3fd84" - integrity sha512-6QvTW9mrGeIegrFXdtQi9pk7O/nSK6lSdXW2eqUspN5LWD7UTji2Fqw5V2YLjBpHEoU9Xl/eUWNpDeZvoyOv2w== - -error@^4.3.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/error/-/error-4.4.0.tgz#bf69ff251fb4a279c19adccdaa6b61e90d9bf12a" - integrity sha512-SNDKualLUtT4StGFP7xNfuFybL2f6iJujFtrWuvJqGbVQGaN+adE23veqzPz1hjUjTunLi2EnJ+0SJxtbJreKw== - dependencies: - camelize "^1.0.0" - string-template "~0.2.0" - xtend "~4.0.0" - -esbuild@^0.25.0: - version "0.25.12" - resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.12.tgz#97a1d041f4ab00c2fce2f838d2b9969a2d2a97a5" - integrity sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg== - optionalDependencies: - "@esbuild/aix-ppc64" "0.25.12" - "@esbuild/android-arm" "0.25.12" - "@esbuild/android-arm64" "0.25.12" - "@esbuild/android-x64" "0.25.12" - "@esbuild/darwin-arm64" "0.25.12" - "@esbuild/darwin-x64" "0.25.12" - "@esbuild/freebsd-arm64" "0.25.12" - "@esbuild/freebsd-x64" "0.25.12" - "@esbuild/linux-arm" "0.25.12" - "@esbuild/linux-arm64" "0.25.12" - "@esbuild/linux-ia32" "0.25.12" - "@esbuild/linux-loong64" "0.25.12" - "@esbuild/linux-mips64el" "0.25.12" - "@esbuild/linux-ppc64" "0.25.12" - "@esbuild/linux-riscv64" "0.25.12" - "@esbuild/linux-s390x" "0.25.12" - "@esbuild/linux-x64" "0.25.12" - "@esbuild/netbsd-arm64" "0.25.12" - "@esbuild/netbsd-x64" "0.25.12" - "@esbuild/openbsd-arm64" "0.25.12" - "@esbuild/openbsd-x64" "0.25.12" - "@esbuild/openharmony-arm64" "0.25.12" - "@esbuild/sunos-x64" "0.25.12" - "@esbuild/win32-arm64" "0.25.12" - "@esbuild/win32-ia32" "0.25.12" - "@esbuild/win32-x64" "0.25.12" - -ev-store@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/ev-store/-/ev-store-7.0.0.tgz#1ab0c7f82136505dd74b31d17701cb2be6d26558" - integrity sha512-otazchNRnGzp2YarBJ+GXKVGvhxVATB1zmaStxJBYet0Dyq7A9VhH8IUEB/gRcL6Ch52lfpgPTRJ2m49epyMsQ== - dependencies: - individual "^3.0.0" - -fdir@^6.5.0: - version "6.5.0" - resolved "https://registry.yarnpkg.com/fdir/-/fdir-6.5.0.tgz#ed2ab967a331ade62f18d077dae192684d50d350" - integrity sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg== - -feather-icons@^4.29.2: - version "4.29.2" - resolved "https://registry.yarnpkg.com/feather-icons/-/feather-icons-4.29.2.tgz#b03a47588a1c400f215e884504db1c18860d89f8" - integrity sha512-0TaCFTnBTVCz6U+baY2UJNKne5ifGh7sMG4ZC2LoBWCZdIyPa+y6UiR4lEYGws1JOFWdee8KAsAIvu0VcXqiqA== - dependencies: - classnames "^2.2.5" - core-js "^3.1.3" - -fsevents@~2.3.2, fsevents@~2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" - integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== - -global@^4.3.0: - version "4.4.0" - resolved "https://registry.yarnpkg.com/global/-/global-4.4.0.tgz#3e7b105179006a323ed71aafca3e9c57a5cc6406" - integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w== - dependencies: - min-document "^2.19.0" - process "^0.11.10" - -https-proxy-agent@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz#702b71fb5520a132a66de1f67541d9e62154d82b" - integrity sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg== - dependencies: - agent-base "5" - debug "4" - -individual@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/individual/-/individual-3.0.0.tgz#e7ca4f85f8957b018734f285750dc22ec2f9862d" - integrity sha512-rUY5vtT748NMRbEMrTNiFfy29BgGZwGXUi2NFUVMWQrogSLzlJvQV9eeMWi+g1aVaQ53tpyLAQtd5x/JH0Nh1g== - -is-object@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.2.tgz#a56552e1c665c9e950b4a025461da87e72f86fcf" - integrity sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA== - -is-stream@^2.0.0: - version "2.0.1" - resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" - integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== - -microsoft-cognitiveservices-speech-sdk@^1.46.0: - version "1.46.0" - resolved "https://registry.yarnpkg.com/microsoft-cognitiveservices-speech-sdk/-/microsoft-cognitiveservices-speech-sdk-1.46.0.tgz#dfe9753df847125c482de093e0501df6cfae3746" - integrity sha512-Vfs2GHQJmPdoSfmVE6uEZTmtiROuaHrP0+ak5SAjS1kXsnuVXQR75wAdxjK14I7d1+0GZ/mE3X3J2cPRGwKxPA== - dependencies: - "@types/webrtc" "^0.0.37" - agent-base "^6.0.1" - bent "^7.3.12" - https-proxy-agent "^4.0.0" - uuid "^9.0.0" - ws "^8.18.2" - -min-document@^2.19.0: - version "2.19.2" - resolved "https://registry.yarnpkg.com/min-document/-/min-document-2.19.2.tgz#f95db44639eaae3ac8ea85ae6809ae85ff7e3b81" - integrity sha512-8S5I8db/uZN8r9HSLFVWPdJCvYOejMcEC82VIzNUc6Zkklf/d1gg2psfE79/vyhWOj4+J8MtwmoOz3TmvaGu5A== - dependencies: - dom-walk "^0.1.0" - -ms@^2.1.3: - version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" - integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== - -nanoid@^3.3.11, nanoid@^3.3.8: - version "3.3.11" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.11.tgz#4f4f112cefbe303202f2199838128936266d185b" - integrity sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w== - -nanoid@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-4.0.2.tgz#140b3c5003959adbebf521c170f282c5e7f9fb9e" - integrity sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw== - -next-tick@^0.2.2: - version "0.2.2" - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-0.2.2.tgz#75da4a927ee5887e39065880065b7336413b310d" - integrity sha512-f7h4svPtl+QidoBv4taKXUjJ70G2asaZ8G28nS0OkqaalX8dwwrtWtyxEDPK62AC00ur/+/E0pUwBwY5EPn15Q== - -picocolors@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.1.1.tgz#3d321af3eab939b083c8f929a1d12cda81c26b6b" - integrity sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA== - -picomatch@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-4.0.3.tgz#796c76136d1eead715db1e7bad785dedd695a042" - integrity sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q== - -postcss@^8.5.6: - version "8.5.6" - resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.6.tgz#2825006615a619b4f62a9e7426cc120b349a8f3c" - integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg== - dependencies: - nanoid "^3.3.11" - picocolors "^1.1.1" - source-map-js "^1.2.1" - -process@^0.11.10: - version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" - integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== - -remarkable@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/remarkable/-/remarkable-2.0.1.tgz#280ae6627384dfb13d98ee3995627ca550a12f31" - integrity sha512-YJyMcOH5lrR+kZdmB0aJJ4+93bEojRZ1HGDn9Eagu6ibg7aVZhc3OWbbShRid+Q5eAfsEqWxpe+g5W5nYNfNiA== - dependencies: - argparse "^1.0.10" - autolinker "^3.11.0" - -rollup@^4.43.0: - version "4.53.2" - resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.53.2.tgz#98e73ee51e119cb9d88b07d026c959522416420a" - integrity sha512-MHngMYwGJVi6Fmnk6ISmnk7JAHRNF0UkuucA0CUW3N3a4KnONPEZz+vUanQP/ZC/iY1Qkf3bwPWzyY84wEks1g== - dependencies: - "@types/estree" "1.0.8" - optionalDependencies: - "@rollup/rollup-android-arm-eabi" "4.53.2" - "@rollup/rollup-android-arm64" "4.53.2" - "@rollup/rollup-darwin-arm64" "4.53.2" - "@rollup/rollup-darwin-x64" "4.53.2" - "@rollup/rollup-freebsd-arm64" "4.53.2" - "@rollup/rollup-freebsd-x64" "4.53.2" - "@rollup/rollup-linux-arm-gnueabihf" "4.53.2" - "@rollup/rollup-linux-arm-musleabihf" "4.53.2" - "@rollup/rollup-linux-arm64-gnu" "4.53.2" - "@rollup/rollup-linux-arm64-musl" "4.53.2" - "@rollup/rollup-linux-loong64-gnu" "4.53.2" - "@rollup/rollup-linux-ppc64-gnu" "4.53.2" - "@rollup/rollup-linux-riscv64-gnu" "4.53.2" - "@rollup/rollup-linux-riscv64-musl" "4.53.2" - "@rollup/rollup-linux-s390x-gnu" "4.53.2" - "@rollup/rollup-linux-x64-gnu" "4.53.2" - "@rollup/rollup-linux-x64-musl" "4.53.2" - "@rollup/rollup-openharmony-arm64" "4.53.2" - "@rollup/rollup-win32-arm64-msvc" "4.53.2" - "@rollup/rollup-win32-ia32-msvc" "4.53.2" - "@rollup/rollup-win32-x64-gnu" "4.53.2" - "@rollup/rollup-win32-x64-msvc" "4.53.2" - fsevents "~2.3.2" - -shortid@^2.2.17: - version "2.2.17" - resolved "https://registry.yarnpkg.com/shortid/-/shortid-2.2.17.tgz#ea87297a36b7edd10a57818fbac5be798e0994bb" - integrity sha512-GpbM3gLF1UUXZvQw6MCyulHkWbRseNO4cyBEZresZRorwl1+SLu1ZdqgVtuwqz8mB6RpwPkm541mYSqrKyJSaA== - dependencies: - nanoid "^3.3.8" - -source-map-js@^1.2.1: - version "1.2.1" - resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" - integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== - -sprintf-js@~1.0.2: - version "1.0.3" - resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" - integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== - -string-template@~0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add" - integrity sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw== - -tinyglobby@^0.2.15: - version "0.2.15" - resolved "https://registry.yarnpkg.com/tinyglobby/-/tinyglobby-0.2.15.tgz#e228dd1e638cea993d2fdb4fcd2d4602a79951c2" - integrity sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ== - dependencies: - fdir "^6.5.0" - picomatch "^4.0.3" - -tslib@^2.3.0: - version "2.8.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.8.1.tgz#612efe4ed235d567e8aba5f2a5fab70280ade83f" - integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w== - -uuid@^9.0.0: - version "9.0.1" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-9.0.1.tgz#e188d4c8853cc722220392c424cd637f32293f30" - integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA== - -virtual-dom@^2.1.1: - version "2.1.1" - resolved "https://registry.yarnpkg.com/virtual-dom/-/virtual-dom-2.1.1.tgz#80eda2d481b9ede0c049118cefcb4a05f21d1375" - integrity sha512-wb6Qc9Lbqug0kRqo/iuApfBpJJAq14Sk1faAnSmtqXiwahg7PVTvWMs9L02Z8nNIMqbwsxzBAA90bbtRLbw0zg== - dependencies: - browser-split "0.0.1" - error "^4.3.0" - ev-store "^7.0.0" - global "^4.3.0" - is-object "^1.0.1" - next-tick "^0.2.2" - x-is-array "0.1.0" - x-is-string "0.1.0" - -vite@^7.2.2: - version "7.2.2" - resolved "https://registry.yarnpkg.com/vite/-/vite-7.2.2.tgz#17dd62eac2d0ca0fa90131c5f56e4fefb8845362" - integrity sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ== - dependencies: - esbuild "^0.25.0" - fdir "^6.5.0" - picomatch "^4.0.3" - postcss "^8.5.6" - rollup "^4.43.0" - tinyglobby "^0.2.15" - optionalDependencies: - fsevents "~2.3.3" - -ws@^8.18.2: - version "8.18.3" - resolved "https://registry.yarnpkg.com/ws/-/ws-8.18.3.tgz#b56b88abffde62791c639170400c93dcb0c95472" - integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg== - -x-is-array@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/x-is-array/-/x-is-array-0.1.0.tgz#de520171d47b3f416f5587d629b89d26b12dc29d" - integrity sha512-goHPif61oNrr0jJgsXRfc8oqtYzvfiMJpTqwE7Z4y9uH+T3UozkGqQ4d2nX9mB9khvA8U2o/UbPOFjgC7hLWIA== - -x-is-string@0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" - integrity sha512-GojqklwG8gpzOVEVki5KudKNoq7MbbjYZCbyWzEz7tyPA7eleiE0+ePwOWQQRb5fm86rD3S8Tc0tSFf3AOv50w== - -xtend@~4.0.0: - version "4.0.2" - resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" - integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== +# This file is generated by running "yarn install" inside your project. +# Manual changes might be lost - proceed with caution! + +__metadata: + version: 8 + cacheKey: 10c0 + +"@calcit/procs@npm:0.12.11": + version: 0.12.11 + resolution: "@calcit/procs@npm:0.12.11" + dependencies: + "@calcit/ternary-tree": "npm:0.0.25" + "@cirru/parser.ts": "npm:^0.0.9" + "@cirru/writer.ts": "npm:^0.1.7" + checksum: 10c0/1b972d6f3bb4fd2291688e3ff528216abbc43f314ffd7ef6f177a2c8a3c07d67963fa6e1062c52a5c91f87ac3724c97da6023dfc167e707178909e012cf50e7d + languageName: node + linkType: hard + +"@calcit/std@npm:^0.0.3": + version: 0.0.3 + resolution: "@calcit/std@npm:0.0.3" + checksum: 10c0/e622dc9f8a70006225889ca904d3c702bfa0a804aec6966c927d52182d83e61eb7f7c5bfe1418eac62885b8e80295497709356a0a7423dbe0e8102d6a7bc04b8 + languageName: node + linkType: hard + +"@calcit/ternary-tree@npm:0.0.25": + version: 0.0.25 + resolution: "@calcit/ternary-tree@npm:0.0.25" + checksum: 10c0/49f01d526dec87810cc45f4e92dfa9043c07ecf64e03e2fa99c8ceca09724e8ec11308118599beffd62852f8594f8944f2c8101bc7e551ae64d421d27f91202b + languageName: node + linkType: hard + +"@cirru/parser.ts@npm:^0.0.9": + version: 0.0.9 + resolution: "@cirru/parser.ts@npm:0.0.9" + checksum: 10c0/3b13623b8f627ac81adae0cb6a4e3664f0da09115a997ca9b78b8d5d0b0f9b9b18c1ad847e068831cb1052c7da2a00329d2af04421b1024a004eef0ddca5fd7a + languageName: node + linkType: hard + +"@cirru/writer.ts@npm:^0.1.7": + version: 0.1.7 + resolution: "@cirru/writer.ts@npm:0.1.7" + checksum: 10c0/3548f596abef52f8d4cfe95b25fc1ded0d059869eafb403e3e340c1bcdc50fe59af9fd75f1b6d9f828129c847965f378945ed370ff9aeec9ddcc89172afad92a + languageName: node + linkType: hard + +"@emnapi/core@npm:^1.7.1": + version: 1.9.1 + resolution: "@emnapi/core@npm:1.9.1" + dependencies: + "@emnapi/wasi-threads": "npm:1.2.0" + tslib: "npm:^2.4.0" + checksum: 10c0/00e7a99a2bc3ad908ca8272ba861a934da87dffa8797a41316c4a3b571a1e4d2743e2fa14b1a0f131fa4a3c2018ddb601cd2a8cb7f574fa940af696df3c2fe8d + languageName: node + linkType: hard + +"@emnapi/runtime@npm:^1.7.1": + version: 1.9.1 + resolution: "@emnapi/runtime@npm:1.9.1" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/750edca117e0363ab2de10622f8ee60e57d8690c2f29c49704813da5cd627c641798d7f3cb0d953c62fdc71688e02e333ddbf2c1204f38b47e3e40657332a6f5 + languageName: node + linkType: hard + +"@emnapi/wasi-threads@npm:1.2.0": + version: 1.2.0 + resolution: "@emnapi/wasi-threads@npm:1.2.0" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/1e3724b5814b06c14782fda87eee9b9aa68af01576c81ffeaefdf621ddb74386e419d5b3b1027b6a8172397729d95a92f814fc4b8d3c224376428faa07a6a01a + languageName: node + linkType: hard + +"@gar/promise-retry@npm:^1.0.0": + version: 1.0.3 + resolution: "@gar/promise-retry@npm:1.0.3" + checksum: 10c0/885b02c8b0d75b2d215da25f3b639158c4fbe8fefe0d79163304534b9a6d0710db4b7699f7cd3cc1a730792bff04cbe19f4850a62d3e105a663eaeec88f38332 + languageName: node + linkType: hard + +"@isaacs/fs-minipass@npm:^4.0.0": + version: 4.0.1 + resolution: "@isaacs/fs-minipass@npm:4.0.1" + dependencies: + minipass: "npm:^7.0.4" + checksum: 10c0/c25b6dc1598790d5b55c0947a9b7d111cfa92594db5296c3b907e2f533c033666f692a3939eadac17b1c7c40d362d0b0635dc874cbfe3e70db7c2b07cc97a5d2 + languageName: node + linkType: hard + +"@napi-rs/wasm-runtime@npm:^1.1.1": + version: 1.1.1 + resolution: "@napi-rs/wasm-runtime@npm:1.1.1" + dependencies: + "@emnapi/core": "npm:^1.7.1" + "@emnapi/runtime": "npm:^1.7.1" + "@tybys/wasm-util": "npm:^0.10.1" + checksum: 10c0/04d57b67e80736e41fe44674a011878db0a8ad893f4d44abb9d3608debb7c174224cba2796ed5b0c1d367368159f3ca6be45f1c59222f70e32ddc880f803d447 + languageName: node + linkType: hard + +"@npmcli/agent@npm:^4.0.0": + version: 4.0.0 + resolution: "@npmcli/agent@npm:4.0.0" + dependencies: + agent-base: "npm:^7.1.0" + http-proxy-agent: "npm:^7.0.0" + https-proxy-agent: "npm:^7.0.1" + lru-cache: "npm:^11.2.1" + socks-proxy-agent: "npm:^8.0.3" + checksum: 10c0/f7b5ce0f3dd42c3f8c6546e8433573d8049f67ef11ec22aa4704bc41483122f68bf97752e06302c455ead667af5cb753e6a09bff06632bc465c1cfd4c4b75a53 + languageName: node + linkType: hard + +"@npmcli/fs@npm:^5.0.0": + version: 5.0.0 + resolution: "@npmcli/fs@npm:5.0.0" + dependencies: + semver: "npm:^7.3.5" + checksum: 10c0/26e376d780f60ff16e874a0ac9bc3399186846baae0b6e1352286385ac134d900cc5dafaded77f38d77f86898fc923ae1cee9d7399f0275b1aa24878915d722b + languageName: node + linkType: hard + +"@npmcli/redact@npm:^4.0.0": + version: 4.0.0 + resolution: "@npmcli/redact@npm:4.0.0" + checksum: 10c0/a1e9ba9c70a6b40e175bda2c3dd8cfdaf096e6b7f7a132c855c083c8dfe545c3237cd56702e2e6627a580b1d63373599d49a1192c4078a85bf47bbde824df31c + languageName: node + linkType: hard + +"@oxc-project/types@npm:=0.122.0": + version: 0.122.0 + resolution: "@oxc-project/types@npm:0.122.0" + checksum: 10c0/2c64dd0db949426fd0c86d4f61eded5902e7b7b166356a825bd3a248aeaa29a495f78918f66ab78e99644b67bd7556096e2a8123cec74ca4141c604f424f4f74 + languageName: node + linkType: hard + +"@rolldown/binding-android-arm64@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-android-arm64@npm:1.0.0-rc.11" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"@rolldown/binding-darwin-arm64@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-darwin-arm64@npm:1.0.0-rc.11" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"@rolldown/binding-darwin-x64@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-darwin-x64@npm:1.0.0-rc.11" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"@rolldown/binding-freebsd-x64@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-freebsd-x64@npm:1.0.0-rc.11" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"@rolldown/binding-linux-arm-gnueabihf@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-linux-arm-gnueabihf@npm:1.0.0-rc.11" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"@rolldown/binding-linux-arm64-gnu@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-linux-arm64-gnu@npm:1.0.0-rc.11" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"@rolldown/binding-linux-arm64-musl@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-linux-arm64-musl@npm:1.0.0-rc.11" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"@rolldown/binding-linux-ppc64-gnu@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-linux-ppc64-gnu@npm:1.0.0-rc.11" + conditions: os=linux & cpu=ppc64 & libc=glibc + languageName: node + linkType: hard + +"@rolldown/binding-linux-s390x-gnu@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-linux-s390x-gnu@npm:1.0.0-rc.11" + conditions: os=linux & cpu=s390x & libc=glibc + languageName: node + linkType: hard + +"@rolldown/binding-linux-x64-gnu@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-linux-x64-gnu@npm:1.0.0-rc.11" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"@rolldown/binding-linux-x64-musl@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-linux-x64-musl@npm:1.0.0-rc.11" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"@rolldown/binding-openharmony-arm64@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-openharmony-arm64@npm:1.0.0-rc.11" + conditions: os=openharmony & cpu=arm64 + languageName: node + linkType: hard + +"@rolldown/binding-wasm32-wasi@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-wasm32-wasi@npm:1.0.0-rc.11" + dependencies: + "@napi-rs/wasm-runtime": "npm:^1.1.1" + conditions: cpu=wasm32 + languageName: node + linkType: hard + +"@rolldown/binding-win32-arm64-msvc@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-win32-arm64-msvc@npm:1.0.0-rc.11" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"@rolldown/binding-win32-x64-msvc@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/binding-win32-x64-msvc@npm:1.0.0-rc.11" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"@rolldown/pluginutils@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "@rolldown/pluginutils@npm:1.0.0-rc.11" + checksum: 10c0/ed20f15c0d78bb3e82f1cb1924ed4b489c026e76cc28ed861609101c75790effa1e2e0fed37ee1b22ceec83aee8ab59098a0d5d3d1b62baa1b44753f88a5e4c6 + languageName: node + linkType: hard + +"@tybys/wasm-util@npm:^0.10.1": + version: 0.10.1 + resolution: "@tybys/wasm-util@npm:0.10.1" + dependencies: + tslib: "npm:^2.4.0" + checksum: 10c0/b255094f293794c6d2289300c5fbcafbb5532a3aed3a5ffd2f8dc1828e639b88d75f6a376dd8f94347a44813fd7a7149d8463477a9a49525c8b2dcaa38c2d1e8 + languageName: node + linkType: hard + +"@types/webrtc@npm:^0.0.37": + version: 0.0.37 + resolution: "@types/webrtc@npm:0.0.37" + checksum: 10c0/7d4d4e1c9b22cfa2ac74678df83f76157f8a81471545a147155c0926e461d6c099bb81cf1a6a8eab0f4ef46af4c429e2000369f21d9f27402ee860df01ba4a3e + languageName: node + linkType: hard + +"abbrev@npm:^4.0.0": + version: 4.0.0 + resolution: "abbrev@npm:4.0.0" + checksum: 10c0/b4cc16935235e80702fc90192e349e32f8ef0ed151ef506aa78c81a7c455ec18375c4125414b99f84b2e055199d66383e787675f0bcd87da7a4dbd59f9eac1d5 + languageName: node + linkType: hard + +"agent-base@npm:5": + version: 5.1.1 + resolution: "agent-base@npm:5.1.1" + checksum: 10c0/3baa3f01072c16e3955ce7802166e576cde9831af82b262aae1c780af49c0c84e82e64ba9ef9e7d1704fe29e9f0096a78a4f998ec137360fee3cb95186f97161 + languageName: node + linkType: hard + +"agent-base@npm:^6.0.1": + version: 6.0.2 + resolution: "agent-base@npm:6.0.2" + dependencies: + debug: "npm:4" + checksum: 10c0/dc4f757e40b5f3e3d674bc9beb4f1048f4ee83af189bae39be99f57bf1f48dde166a8b0a5342a84b5944ee8e6ed1e5a9d801858f4ad44764e84957122fe46261 + languageName: node + linkType: hard + +"agent-base@npm:^7.1.0, agent-base@npm:^7.1.2": + version: 7.1.4 + resolution: "agent-base@npm:7.1.4" + checksum: 10c0/c2c9ab7599692d594b6a161559ada307b7a624fa4c7b03e3afdb5a5e31cd0e53269115b620fcab024c5ac6a6f37fa5eb2e004f076ad30f5f7e6b8b671f7b35fe + languageName: node + linkType: hard + +"argparse@npm:^1.0.10": + version: 1.0.10 + resolution: "argparse@npm:1.0.10" + dependencies: + sprintf-js: "npm:~1.0.2" + checksum: 10c0/b2972c5c23c63df66bca144dbc65d180efa74f25f8fd9b7d9a0a6c88ae839db32df3d54770dcb6460cf840d232b60695d1a6b1053f599d84e73f7437087712de + languageName: node + linkType: hard + +"autolinker@npm:^3.11.0": + version: 3.16.2 + resolution: "autolinker@npm:3.16.2" + dependencies: + tslib: "npm:^2.3.0" + checksum: 10c0/91e083bfa4393fdcd29f595e1db657d852fd74cbd1fec719f30f3d57c910e72d5e0a0b10f2b17e1e6297b52b2f5c12eb6d0cbe024c0d92671e81d8ab906fe981 + languageName: node + linkType: hard + +"balanced-match@npm:^4.0.2": + version: 4.0.4 + resolution: "balanced-match@npm:4.0.4" + checksum: 10c0/07e86102a3eb2ee2a6a1a89164f29d0dbaebd28f2ca3f5ca786f36b8b23d9e417eb3be45a4acf754f837be5ac0a2317de90d3fcb7f4f4dc95720a1f36b26a17b + languageName: node + linkType: hard + +"bent@npm:^7.3.12": + version: 7.3.12 + resolution: "bent@npm:7.3.12" + dependencies: + bytesish: "npm:^0.4.1" + caseless: "npm:~0.12.0" + is-stream: "npm:^2.0.0" + checksum: 10c0/20f77364bcb462a6eb0ea7322442a1125ca6181ea6b94ad498b8348c678a2adf56c231a653bcac016c5d017aee91ff55b2169b69d8263a4b3c710f4121cbe615 + languageName: node + linkType: hard + +"bottom-tip@npm:^0.1.5": + version: 0.1.5 + resolution: "bottom-tip@npm:0.1.5" + dependencies: + nanoid: "npm:^4.0.1" + virtual-dom: "npm:^2.1.1" + checksum: 10c0/6d67176db5e2e66c3566351fe418451a2665f2935f8621a61135fb493bcb2adbf5b6763a584a9935997efb0a89ee1022b60994fd90ef3ef1d8f2e08abe5b34e3 + languageName: node + linkType: hard + +"brace-expansion@npm:^5.0.2": + version: 5.0.4 + resolution: "brace-expansion@npm:5.0.4" + dependencies: + balanced-match: "npm:^4.0.2" + checksum: 10c0/359cbcfa80b2eb914ca1f3440e92313fbfe7919ee6b274c35db55bec555aded69dac5ee78f102cec90c35f98c20fa43d10936d0cd9978158823c249257e1643a + languageName: node + linkType: hard + +"browser-split@npm:0.0.1": + version: 0.0.1 + resolution: "browser-split@npm:0.0.1" + checksum: 10c0/c0ed77e8bf3494e6803681c578f5c0c0d050fbd041f608f0fe7ec23bdb98483ba6905dfa785786963b9b555aab04f95d6e15f8b4ecdd53a40215134a66ec3f39 + languageName: node + linkType: hard + +"bytesish@npm:^0.4.1": + version: 0.4.4 + resolution: "bytesish@npm:0.4.4" + checksum: 10c0/469088f0020797dfbb61b6ce3972c91d95d79df8aacca55841ea93ac59ef3209bb04be8212b6265dfbafb7583a58dd73ca2f14e4feae36d3333a4f1509dd2eef + languageName: node + linkType: hard + +"cacache@npm:^20.0.1": + version: 20.0.4 + resolution: "cacache@npm:20.0.4" + dependencies: + "@npmcli/fs": "npm:^5.0.0" + fs-minipass: "npm:^3.0.0" + glob: "npm:^13.0.0" + lru-cache: "npm:^11.1.0" + minipass: "npm:^7.0.3" + minipass-collect: "npm:^2.0.1" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + p-map: "npm:^7.0.2" + ssri: "npm:^13.0.0" + checksum: 10c0/539bf4020e44ba9ca5afc2ec435623ed7e0dd80c020097677e6b4a0545df5cc9d20b473212d01209c8b4aea43c0d095af0bb6da97bcb991642ea6fac0d7c462b + languageName: node + linkType: hard + +"camelize@npm:^1.0.0": + version: 1.0.1 + resolution: "camelize@npm:1.0.1" + checksum: 10c0/4c9ac55efd356d37ac483bad3093758236ab686192751d1c9daa43188cc5a07b09bd431eb7458a4efd9ca22424bba23253e7b353feb35d7c749ba040de2385fb + languageName: node + linkType: hard + +"caseless@npm:~0.12.0": + version: 0.12.0 + resolution: "caseless@npm:0.12.0" + checksum: 10c0/ccf64bcb6c0232cdc5b7bd91ddd06e23a4b541f138336d4725233ac538041fb2f29c2e86c3c4a7a61ef990b665348db23a047060b9414c3a6603e9fa61ad4626 + languageName: node + linkType: hard + +"chownr@npm:^3.0.0": + version: 3.0.0 + resolution: "chownr@npm:3.0.0" + checksum: 10c0/43925b87700f7e3893296c8e9c56cc58f926411cce3a6e5898136daaf08f08b9a8eb76d37d3267e707d0dcc17aed2e2ebdf5848c0c3ce95cf910a919935c1b10 + languageName: node + linkType: hard + +"classnames@npm:^2.2.5": + version: 2.5.1 + resolution: "classnames@npm:2.5.1" + checksum: 10c0/afff4f77e62cea2d79c39962980bf316bacb0d7c49e13a21adaadb9221e1c6b9d3cdb829d8bb1b23c406f4e740507f37e1dcf506f7e3b7113d17c5bab787aa69 + languageName: node + linkType: hard + +"core-js@npm:^3.1.3": + version: 3.46.0 + resolution: "core-js@npm:3.46.0" + checksum: 10c0/12d559d39a58227881bc6c86c36d24dcfbe2d56e52dac42e35e8643278172596ab67f57ede98baf40b153ca1b830f37420ea32c3f7417c0c5a1fed46438ae187 + languageName: node + linkType: hard + +"dayjs@npm:^1.11.19": + version: 1.11.19 + resolution: "dayjs@npm:1.11.19" + checksum: 10c0/7d8a6074a343f821f81ea284d700bd34ea6c7abbe8d93bce7aba818948957c1b7f56131702e5e890a5622cdfc05dcebe8aed0b8313bdc6838a594d7846b0b000 + languageName: node + linkType: hard + +"debug@npm:4, debug@npm:^4.3.4": + version: 4.4.3 + resolution: "debug@npm:4.4.3" + dependencies: + ms: "npm:^2.1.3" + peerDependenciesMeta: + supports-color: + optional: true + checksum: 10c0/d79136ec6c83ecbefd0f6a5593da6a9c91ec4d7ddc4b54c883d6e71ec9accb5f67a1a5e96d00a328196b5b5c86d365e98d8a3a70856aaf16b4e7b1985e67f5a6 + languageName: node + linkType: hard + +"detect-libc@npm:^2.0.3": + version: 2.1.2 + resolution: "detect-libc@npm:2.1.2" + checksum: 10c0/acc675c29a5649fa1fb6e255f993b8ee829e510b6b56b0910666949c80c364738833417d0edb5f90e4e46be17228b0f2b66a010513984e18b15deeeac49369c4 + languageName: node + linkType: hard + +"dom-walk@npm:^0.1.0": + version: 0.1.2 + resolution: "dom-walk@npm:0.1.2" + checksum: 10c0/4d2ad9062a9423d890f8577aa202b597a6b85f9489bdde656b9443901b8b322b289655c3affefc58ec2e41931e0828dfee0a1d2db6829a607d76def5901fc5a9 + languageName: node + linkType: hard + +"env-paths@npm:^2.2.0": + version: 2.2.1 + resolution: "env-paths@npm:2.2.1" + checksum: 10c0/285325677bf00e30845e330eec32894f5105529db97496ee3f598478e50f008c5352a41a30e5e72ec9de8a542b5a570b85699cd63bd2bc646dbcb9f311d83bc4 + languageName: node + linkType: hard + +"error@npm:^4.3.0": + version: 4.4.0 + resolution: "error@npm:4.4.0" + dependencies: + camelize: "npm:^1.0.0" + string-template: "npm:~0.2.0" + xtend: "npm:~4.0.0" + checksum: 10c0/6aecddafbc14db142a47df295b2d832630dd4af6ec62a52dbf00eefa7adea249a3182a6c920c5e24974204f7234d02ed2b073f6f8eb164ba2e620d93218e2e66 + languageName: node + linkType: hard + +"ev-store@npm:^7.0.0": + version: 7.0.0 + resolution: "ev-store@npm:7.0.0" + dependencies: + individual: "npm:^3.0.0" + checksum: 10c0/a470c07142a34ebc1aff20291fafe56675f4231ac5077de2dd6df6134e257a603b45efd4865c2f368084e40b1ac8efcec1459a182ce4bcd52256ae70e1b3dd5d + languageName: node + linkType: hard + +"exponential-backoff@npm:^3.1.1": + version: 3.1.3 + resolution: "exponential-backoff@npm:3.1.3" + checksum: 10c0/77e3ae682b7b1f4972f563c6dbcd2b0d54ac679e62d5d32f3e5085feba20483cf28bd505543f520e287a56d4d55a28d7874299941faf637e779a1aa5994d1267 + languageName: node + linkType: hard + +"fdir@npm:^6.5.0": + version: 6.5.0 + resolution: "fdir@npm:6.5.0" + peerDependencies: + picomatch: ^3 || ^4 + peerDependenciesMeta: + picomatch: + optional: true + checksum: 10c0/e345083c4306b3aed6cb8ec551e26c36bab5c511e99ea4576a16750ddc8d3240e63826cc624f5ae17ad4dc82e68a253213b60d556c11bfad064b7607847ed07f + languageName: node + linkType: hard + +"feather-icons@npm:^4.29.2": + version: 4.29.2 + resolution: "feather-icons@npm:4.29.2" + dependencies: + classnames: "npm:^2.2.5" + core-js: "npm:^3.1.3" + checksum: 10c0/a23f8fbb6e96c901290308bb96267660ddd32c367074411e6a641c030448eff8041072c46e82cbf3bb3c4b2440df107e8defed09ff068e55117db6b867ca7b32 + languageName: node + linkType: hard + +"fs-minipass@npm:^3.0.0": + version: 3.0.3 + resolution: "fs-minipass@npm:3.0.3" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/63e80da2ff9b621e2cb1596abcb9207f1cf82b968b116ccd7b959e3323144cce7fb141462200971c38bbf2ecca51695069db45265705bed09a7cd93ae5b89f94 + languageName: node + linkType: hard + +"fsevents@npm:~2.3.3": + version: 2.3.3 + resolution: "fsevents@npm:2.3.3" + dependencies: + node-gyp: "npm:latest" + checksum: 10c0/a1f0c44595123ed717febbc478aa952e47adfc28e2092be66b8ab1635147254ca6cfe1df792a8997f22716d4cbafc73309899ff7bfac2ac3ad8cf2e4ecc3ec60 + conditions: os=darwin + languageName: node + linkType: hard + +"fsevents@patch:fsevents@npm%3A~2.3.3#optional!builtin": + version: 2.3.3 + resolution: "fsevents@patch:fsevents@npm%3A2.3.3#optional!builtin::version=2.3.3&hash=df0bf1" + dependencies: + node-gyp: "npm:latest" + conditions: os=darwin + languageName: node + linkType: hard + +"glob@npm:^13.0.0": + version: 13.0.6 + resolution: "glob@npm:13.0.6" + dependencies: + minimatch: "npm:^10.2.2" + minipass: "npm:^7.1.3" + path-scurry: "npm:^2.0.2" + checksum: 10c0/269c236f11a9b50357fe7a8c6aadac667e01deb5242b19c84975628f05f4438d8ee1354bb62c5d6c10f37fd59911b54d7799730633a2786660d8c69f1d18120a + languageName: node + linkType: hard + +"global@npm:^4.3.0": + version: 4.4.0 + resolution: "global@npm:4.4.0" + dependencies: + min-document: "npm:^2.19.0" + process: "npm:^0.11.10" + checksum: 10c0/4a467aec6602c00a7c5685f310574ab04e289ad7f894f0f01c9c5763562b82f4b92d1e381ce6c5bbb12173e2a9f759c1b63dda6370cfb199970267e14d90aa91 + languageName: node + linkType: hard + +"graceful-fs@npm:^4.2.6": + version: 4.2.11 + resolution: "graceful-fs@npm:4.2.11" + checksum: 10c0/386d011a553e02bc594ac2ca0bd6d9e4c22d7fa8cfbfc448a6d148c59ea881b092db9dbe3547ae4b88e55f1b01f7c4a2ecc53b310c042793e63aa44cf6c257f2 + languageName: node + linkType: hard + +"hn-reader@workspace:.": + version: 0.0.0-use.local + resolution: "hn-reader@workspace:." + dependencies: + "@calcit/procs": "npm:0.12.11" + "@calcit/std": "npm:^0.0.3" + bottom-tip: "npm:^0.1.5" + dayjs: "npm:^1.11.19" + feather-icons: "npm:^4.29.2" + microsoft-cognitiveservices-speech-sdk: "npm:^1.46.0" + remarkable: "npm:^2.0.1" + shortid: "npm:^2.2.17" + vite: "npm:^8.0.2" + languageName: unknown + linkType: soft + +"http-cache-semantics@npm:^4.1.1": + version: 4.2.0 + resolution: "http-cache-semantics@npm:4.2.0" + checksum: 10c0/45b66a945cf13ec2d1f29432277201313babf4a01d9e52f44b31ca923434083afeca03f18417f599c9ab3d0e7b618ceb21257542338b57c54b710463b4a53e37 + languageName: node + linkType: hard + +"http-proxy-agent@npm:^7.0.0": + version: 7.0.2 + resolution: "http-proxy-agent@npm:7.0.2" + dependencies: + agent-base: "npm:^7.1.0" + debug: "npm:^4.3.4" + checksum: 10c0/4207b06a4580fb85dd6dff521f0abf6db517489e70863dca1a0291daa7f2d3d2d6015a57bd702af068ea5cf9f1f6ff72314f5f5b4228d299c0904135d2aef921 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^4.0.0": + version: 4.0.0 + resolution: "https-proxy-agent@npm:4.0.0" + dependencies: + agent-base: "npm:5" + debug: "npm:4" + checksum: 10c0/fbba3e037ec04e1850e867064a763b86dd884baae9c5f4ad380504e321068c9e9b5de79cf2f3a28ede7c36036dce905b58d9f51703c5b3884d887114f4887f77 + languageName: node + linkType: hard + +"https-proxy-agent@npm:^7.0.1": + version: 7.0.6 + resolution: "https-proxy-agent@npm:7.0.6" + dependencies: + agent-base: "npm:^7.1.2" + debug: "npm:4" + checksum: 10c0/f729219bc735edb621fa30e6e84e60ee5d00802b8247aac0d7b79b0bd6d4b3294737a337b93b86a0bd9e68099d031858a39260c976dc14cdbba238ba1f8779ac + languageName: node + linkType: hard + +"iconv-lite@npm:^0.7.2": + version: 0.7.2 + resolution: "iconv-lite@npm:0.7.2" + dependencies: + safer-buffer: "npm:>= 2.1.2 < 3.0.0" + checksum: 10c0/3c228920f3bd307f56bf8363706a776f4a060eb042f131cd23855ceca962951b264d0997ab38a1ad340e1c5df8499ed26e1f4f0db6b2a2ad9befaff22f14b722 + languageName: node + linkType: hard + +"individual@npm:^3.0.0": + version: 3.0.0 + resolution: "individual@npm:3.0.0" + checksum: 10c0/1d5b7af8833a4af77755a98abc0f69e0f54396ca379a5b2287f0b4dafbbbd9ac896e413e780ce18e61476b9bbfe4144b8a36d218770a7a707d490c09d428ea1b + languageName: node + linkType: hard + +"ip-address@npm:^10.0.1": + version: 10.1.0 + resolution: "ip-address@npm:10.1.0" + checksum: 10c0/0103516cfa93f6433b3bd7333fa876eb21263912329bfa47010af5e16934eeeff86f3d2ae700a3744a137839ddfad62b900c7a445607884a49b5d1e32a3d7566 + languageName: node + linkType: hard + +"is-object@npm:^1.0.1": + version: 1.0.2 + resolution: "is-object@npm:1.0.2" + checksum: 10c0/9cfb80c3a850f453d4a77297e0556bc2040ac6bea5b6e418aee208654938b36bab768169bef3945ccfac7a9bb460edd8034e7c6d8973bcf147d7571e1b53e764 + languageName: node + linkType: hard + +"is-stream@npm:^2.0.0": + version: 2.0.1 + resolution: "is-stream@npm:2.0.1" + checksum: 10c0/7c284241313fc6efc329b8d7f08e16c0efeb6baab1b4cd0ba579eb78e5af1aa5da11e68559896a2067cd6c526bd29241dda4eb1225e627d5aa1a89a76d4635a5 + languageName: node + linkType: hard + +"isexe@npm:^4.0.0": + version: 4.0.0 + resolution: "isexe@npm:4.0.0" + checksum: 10c0/5884815115bceac452877659a9c7726382531592f43dc29e5d48b7c4100661aed54018cb90bd36cb2eaeba521092570769167acbb95c18d39afdccbcca06c5ce + languageName: node + linkType: hard + +"lightningcss-android-arm64@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-android-arm64@npm:1.32.0" + conditions: os=android & cpu=arm64 + languageName: node + linkType: hard + +"lightningcss-darwin-arm64@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-darwin-arm64@npm:1.32.0" + conditions: os=darwin & cpu=arm64 + languageName: node + linkType: hard + +"lightningcss-darwin-x64@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-darwin-x64@npm:1.32.0" + conditions: os=darwin & cpu=x64 + languageName: node + linkType: hard + +"lightningcss-freebsd-x64@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-freebsd-x64@npm:1.32.0" + conditions: os=freebsd & cpu=x64 + languageName: node + linkType: hard + +"lightningcss-linux-arm-gnueabihf@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-linux-arm-gnueabihf@npm:1.32.0" + conditions: os=linux & cpu=arm + languageName: node + linkType: hard + +"lightningcss-linux-arm64-gnu@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-linux-arm64-gnu@npm:1.32.0" + conditions: os=linux & cpu=arm64 & libc=glibc + languageName: node + linkType: hard + +"lightningcss-linux-arm64-musl@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-linux-arm64-musl@npm:1.32.0" + conditions: os=linux & cpu=arm64 & libc=musl + languageName: node + linkType: hard + +"lightningcss-linux-x64-gnu@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-linux-x64-gnu@npm:1.32.0" + conditions: os=linux & cpu=x64 & libc=glibc + languageName: node + linkType: hard + +"lightningcss-linux-x64-musl@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-linux-x64-musl@npm:1.32.0" + conditions: os=linux & cpu=x64 & libc=musl + languageName: node + linkType: hard + +"lightningcss-win32-arm64-msvc@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-win32-arm64-msvc@npm:1.32.0" + conditions: os=win32 & cpu=arm64 + languageName: node + linkType: hard + +"lightningcss-win32-x64-msvc@npm:1.32.0": + version: 1.32.0 + resolution: "lightningcss-win32-x64-msvc@npm:1.32.0" + conditions: os=win32 & cpu=x64 + languageName: node + linkType: hard + +"lightningcss@npm:^1.32.0": + version: 1.32.0 + resolution: "lightningcss@npm:1.32.0" + dependencies: + detect-libc: "npm:^2.0.3" + lightningcss-android-arm64: "npm:1.32.0" + lightningcss-darwin-arm64: "npm:1.32.0" + lightningcss-darwin-x64: "npm:1.32.0" + lightningcss-freebsd-x64: "npm:1.32.0" + lightningcss-linux-arm-gnueabihf: "npm:1.32.0" + lightningcss-linux-arm64-gnu: "npm:1.32.0" + lightningcss-linux-arm64-musl: "npm:1.32.0" + lightningcss-linux-x64-gnu: "npm:1.32.0" + lightningcss-linux-x64-musl: "npm:1.32.0" + lightningcss-win32-arm64-msvc: "npm:1.32.0" + lightningcss-win32-x64-msvc: "npm:1.32.0" + dependenciesMeta: + lightningcss-android-arm64: + optional: true + lightningcss-darwin-arm64: + optional: true + lightningcss-darwin-x64: + optional: true + lightningcss-freebsd-x64: + optional: true + lightningcss-linux-arm-gnueabihf: + optional: true + lightningcss-linux-arm64-gnu: + optional: true + lightningcss-linux-arm64-musl: + optional: true + lightningcss-linux-x64-gnu: + optional: true + lightningcss-linux-x64-musl: + optional: true + lightningcss-win32-arm64-msvc: + optional: true + lightningcss-win32-x64-msvc: + optional: true + checksum: 10c0/70945bd55097af46fc9fab7f5ed09cd5869d85940a2acab7ee06d0117004a1d68155708a2d462531cea2fc3c67aefc9333a7068c80b0b78dd404c16838809e03 + languageName: node + linkType: hard + +"lru-cache@npm:^11.0.0, lru-cache@npm:^11.1.0, lru-cache@npm:^11.2.1": + version: 11.2.7 + resolution: "lru-cache@npm:11.2.7" + checksum: 10c0/549cdb59488baa617135fc12159cafb1a97f91079f35093bb3bcad72e849fc64ace636d244212c181dfdf1a99bbfa90757ff303f98561958ee4d0f885d9bd5f7 + languageName: node + linkType: hard + +"make-fetch-happen@npm:^15.0.0": + version: 15.0.5 + resolution: "make-fetch-happen@npm:15.0.5" + dependencies: + "@gar/promise-retry": "npm:^1.0.0" + "@npmcli/agent": "npm:^4.0.0" + "@npmcli/redact": "npm:^4.0.0" + cacache: "npm:^20.0.1" + http-cache-semantics: "npm:^4.1.1" + minipass: "npm:^7.0.2" + minipass-fetch: "npm:^5.0.0" + minipass-flush: "npm:^1.0.5" + minipass-pipeline: "npm:^1.2.4" + negotiator: "npm:^1.0.0" + proc-log: "npm:^6.0.0" + ssri: "npm:^13.0.0" + checksum: 10c0/527580eb5e5476e6ad07a4e3bd017d13e935f4be815674b442081ae5a721c13d3af5715006619e6be79a85723067e047f83a0c9e699f41d8cec43609a8de4f7b + languageName: node + linkType: hard + +"microsoft-cognitiveservices-speech-sdk@npm:^1.46.0": + version: 1.46.0 + resolution: "microsoft-cognitiveservices-speech-sdk@npm:1.46.0" + dependencies: + "@types/webrtc": "npm:^0.0.37" + agent-base: "npm:^6.0.1" + bent: "npm:^7.3.12" + https-proxy-agent: "npm:^4.0.0" + uuid: "npm:^9.0.0" + ws: "npm:^8.18.2" + checksum: 10c0/cad886741bc0c6dfc8b4d3be49eb9973d51203c9c30ccb67d9b1f4693284c741dcb83a21bdc0d1e07c85c6f3a8fd29d63f4dc46bec4feec7c7bfb94701bba25d + languageName: node + linkType: hard + +"min-document@npm:^2.19.0": + version: 2.19.2 + resolution: "min-document@npm:2.19.2" + dependencies: + dom-walk: "npm:^0.1.0" + checksum: 10c0/f6cd59ae07758583bda19cf86ffa8e072cc6e1d72d4e2a62fbf72af3ca630f66ac6a0b3e0ca2b83d5939886da2d006c309fbd0e94f17931ad117860c3fb51bf7 + languageName: node + linkType: hard + +"minimatch@npm:^10.2.2": + version: 10.2.4 + resolution: "minimatch@npm:10.2.4" + dependencies: + brace-expansion: "npm:^5.0.2" + checksum: 10c0/35f3dfb7b99b51efd46afd378486889f590e7efb10e0f6a10ba6800428cf65c9a8dedb74427d0570b318d749b543dc4e85f06d46d2858bc8cac7e1eb49a95945 + languageName: node + linkType: hard + +"minipass-collect@npm:^2.0.1": + version: 2.0.1 + resolution: "minipass-collect@npm:2.0.1" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/5167e73f62bb74cc5019594709c77e6a742051a647fe9499abf03c71dca75515b7959d67a764bdc4f8b361cf897fbf25e2d9869ee039203ed45240f48b9aa06e + languageName: node + linkType: hard + +"minipass-fetch@npm:^5.0.0": + version: 5.0.2 + resolution: "minipass-fetch@npm:5.0.2" + dependencies: + iconv-lite: "npm:^0.7.2" + minipass: "npm:^7.0.3" + minipass-sized: "npm:^2.0.0" + minizlib: "npm:^3.0.1" + dependenciesMeta: + iconv-lite: + optional: true + checksum: 10c0/ce4ab9f21cfabaead2097d95dd33f485af8072fbc6b19611bce694965393453a1639d641c2bcf1c48f2ea7d41ea7fab8278373f1d0bee4e63b0a5b2cdd0ef649 + languageName: node + linkType: hard + +"minipass-flush@npm:^1.0.5": + version: 1.0.5 + resolution: "minipass-flush@npm:1.0.5" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/2a51b63feb799d2bb34669205eee7c0eaf9dce01883261a5b77410c9408aa447e478efd191b4de6fc1101e796ff5892f8443ef20d9544385819093dbb32d36bd + languageName: node + linkType: hard + +"minipass-pipeline@npm:^1.2.4": + version: 1.2.4 + resolution: "minipass-pipeline@npm:1.2.4" + dependencies: + minipass: "npm:^3.0.0" + checksum: 10c0/cbda57cea20b140b797505dc2cac71581a70b3247b84480c1fed5ca5ba46c25ecc25f68bfc9e6dcb1a6e9017dab5c7ada5eab73ad4f0a49d84e35093e0c643f2 + languageName: node + linkType: hard + +"minipass-sized@npm:^2.0.0": + version: 2.0.0 + resolution: "minipass-sized@npm:2.0.0" + dependencies: + minipass: "npm:^7.1.2" + checksum: 10c0/f9201696a6f6d68610d04c9c83e3d2e5cb9c026aae1c8cbf7e17f386105cb79c1bb088dbc21bf0b1eb4f3fb5df384fd1e7aa3bf1f33868c416ae8c8a92679db8 + languageName: node + linkType: hard + +"minipass@npm:^3.0.0": + version: 3.3.6 + resolution: "minipass@npm:3.3.6" + dependencies: + yallist: "npm:^4.0.0" + checksum: 10c0/a114746943afa1dbbca8249e706d1d38b85ed1298b530f5808ce51f8e9e941962e2a5ad2e00eae7dd21d8a4aae6586a66d4216d1a259385e9d0358f0c1eba16c + languageName: node + linkType: hard + +"minipass@npm:^7.0.2, minipass@npm:^7.0.3, minipass@npm:^7.0.4, minipass@npm:^7.1.2, minipass@npm:^7.1.3": + version: 7.1.3 + resolution: "minipass@npm:7.1.3" + checksum: 10c0/539da88daca16533211ea5a9ee98dc62ff5742f531f54640dd34429e621955e91cc280a91a776026264b7f9f6735947629f920944e9c1558369e8bf22eb33fbb + languageName: node + linkType: hard + +"minizlib@npm:^3.0.1, minizlib@npm:^3.1.0": + version: 3.1.0 + resolution: "minizlib@npm:3.1.0" + dependencies: + minipass: "npm:^7.1.2" + checksum: 10c0/5aad75ab0090b8266069c9aabe582c021ae53eb33c6c691054a13a45db3b4f91a7fb1bd79151e6b4e9e9a86727b522527c0a06ec7d45206b745d54cd3097bcec + languageName: node + linkType: hard + +"ms@npm:^2.1.3": + version: 2.1.3 + resolution: "ms@npm:2.1.3" + checksum: 10c0/d924b57e7312b3b63ad21fc5b3dc0af5e78d61a1fc7cfb5457edaf26326bf62be5307cc87ffb6862ef1c2b33b0233cdb5d4f01c4c958cc0d660948b65a287a48 + languageName: node + linkType: hard + +"nanoid@npm:^3.3.11, nanoid@npm:^3.3.8": + version: 3.3.11 + resolution: "nanoid@npm:3.3.11" + bin: + nanoid: bin/nanoid.cjs + checksum: 10c0/40e7f70b3d15f725ca072dfc4f74e81fcf1fbb02e491cf58ac0c79093adc9b0a73b152bcde57df4b79cd097e13023d7504acb38404a4da7bc1cd8e887b82fe0b + languageName: node + linkType: hard + +"nanoid@npm:^4.0.1": + version: 4.0.2 + resolution: "nanoid@npm:4.0.2" + bin: + nanoid: bin/nanoid.js + checksum: 10c0/3fec62f422bc4727918eda0e7aa43e9cbb2e759be72813a0587b9dac99727d3c7ad972efce7f4f1d4cb5c7c554136a1ec3b1043d1d91d28d818d6acbe98200e5 + languageName: node + linkType: hard + +"negotiator@npm:^1.0.0": + version: 1.0.0 + resolution: "negotiator@npm:1.0.0" + checksum: 10c0/4c559dd52669ea48e1914f9d634227c561221dd54734070791f999c52ed0ff36e437b2e07d5c1f6e32909fc625fe46491c16e4a8f0572567d4dd15c3a4fda04b + languageName: node + linkType: hard + +"next-tick@npm:^0.2.2": + version: 0.2.2 + resolution: "next-tick@npm:0.2.2" + checksum: 10c0/ccecbe773004af4ef06870dec192b5c8ad8cfe42425306bff1a90738339c6e6e3a520e65536f8a46a76b45ebf82a7049c8252b3518ec7bac9900859b786aed5b + languageName: node + linkType: hard + +"node-gyp@npm:latest": + version: 12.2.0 + resolution: "node-gyp@npm:12.2.0" + dependencies: + env-paths: "npm:^2.2.0" + exponential-backoff: "npm:^3.1.1" + graceful-fs: "npm:^4.2.6" + make-fetch-happen: "npm:^15.0.0" + nopt: "npm:^9.0.0" + proc-log: "npm:^6.0.0" + semver: "npm:^7.3.5" + tar: "npm:^7.5.4" + tinyglobby: "npm:^0.2.12" + which: "npm:^6.0.0" + bin: + node-gyp: bin/node-gyp.js + checksum: 10c0/3ed046746a5a7d90950cd8b0547332b06598443f31fe213ef4332a7174c7b7d259e1704835feda79b87d3f02e59d7791842aac60642ede4396ab25fdf0f8f759 + languageName: node + linkType: hard + +"nopt@npm:^9.0.0": + version: 9.0.0 + resolution: "nopt@npm:9.0.0" + dependencies: + abbrev: "npm:^4.0.0" + bin: + nopt: bin/nopt.js + checksum: 10c0/1822eb6f9b020ef6f7a7516d7b64a8036e09666ea55ac40416c36e4b2b343122c3cff0e2f085675f53de1d2db99a2a89a60ccea1d120bcd6a5347bf6ceb4a7fd + languageName: node + linkType: hard + +"p-map@npm:^7.0.2": + version: 7.0.4 + resolution: "p-map@npm:7.0.4" + checksum: 10c0/a5030935d3cb2919d7e89454d1ce82141e6f9955413658b8c9403cfe379283770ed3048146b44cde168aa9e8c716505f196d5689db0ae3ce9a71521a2fef3abd + languageName: node + linkType: hard + +"path-scurry@npm:^2.0.2": + version: 2.0.2 + resolution: "path-scurry@npm:2.0.2" + dependencies: + lru-cache: "npm:^11.0.0" + minipass: "npm:^7.1.2" + checksum: 10c0/b35ad37cf6557a87fd057121ce2be7695380c9138d93e87ae928609da259ea0a170fac6f3ef1eb3ece8a068e8b7f2f3adf5bb2374cf4d4a57fe484954fcc9482 + languageName: node + linkType: hard + +"picocolors@npm:^1.1.1": + version: 1.1.1 + resolution: "picocolors@npm:1.1.1" + checksum: 10c0/e2e3e8170ab9d7c7421969adaa7e1b31434f789afb9b3f115f6b96d91945041ac3ceb02e9ec6fe6510ff036bcc0bf91e69a1772edc0b707e12b19c0f2d6bcf58 + languageName: node + linkType: hard + +"picomatch@npm:^4.0.3": + version: 4.0.3 + resolution: "picomatch@npm:4.0.3" + checksum: 10c0/9582c951e95eebee5434f59e426cddd228a7b97a0161a375aed4be244bd3fe8e3a31b846808ea14ef2c8a2527a6eeab7b3946a67d5979e81694654f939473ae2 + languageName: node + linkType: hard + +"postcss@npm:^8.5.8": + version: 8.5.8 + resolution: "postcss@npm:8.5.8" + dependencies: + nanoid: "npm:^3.3.11" + picocolors: "npm:^1.1.1" + source-map-js: "npm:^1.2.1" + checksum: 10c0/dd918f7127ee7c60a0295bae2e72b3787892296e1d1c3c564d7a2a00c68d8df83cadc3178491259daa19ccc54804fb71ed8c937c6787e08d8bd4bedf8d17044c + languageName: node + linkType: hard + +"proc-log@npm:^6.0.0": + version: 6.1.0 + resolution: "proc-log@npm:6.1.0" + checksum: 10c0/4f178d4062733ead9d71a9b1ab24ebcecdfe2250916a5b1555f04fe2eda972a0ec76fbaa8df1ad9c02707add6749219d118a4fc46dc56bdfe4dde4b47d80bb82 + languageName: node + linkType: hard + +"process@npm:^0.11.10": + version: 0.11.10 + resolution: "process@npm:0.11.10" + checksum: 10c0/40c3ce4b7e6d4b8c3355479df77aeed46f81b279818ccdc500124e6a5ab882c0cc81ff7ea16384873a95a74c4570b01b120f287abbdd4c877931460eca6084b3 + languageName: node + linkType: hard + +"remarkable@npm:^2.0.1": + version: 2.0.1 + resolution: "remarkable@npm:2.0.1" + dependencies: + argparse: "npm:^1.0.10" + autolinker: "npm:^3.11.0" + bin: + remarkable: bin/remarkable.js + checksum: 10c0/e2c23bfd2e45234110bc3220e44fcac5e4a8199691ff6959d9cd0bac34ffca2f123d3913946cbef517018bc8e5ab00beafc527a04782b7afbe5e9706d1c0c77a + languageName: node + linkType: hard + +"rolldown@npm:1.0.0-rc.11": + version: 1.0.0-rc.11 + resolution: "rolldown@npm:1.0.0-rc.11" + dependencies: + "@oxc-project/types": "npm:=0.122.0" + "@rolldown/binding-android-arm64": "npm:1.0.0-rc.11" + "@rolldown/binding-darwin-arm64": "npm:1.0.0-rc.11" + "@rolldown/binding-darwin-x64": "npm:1.0.0-rc.11" + "@rolldown/binding-freebsd-x64": "npm:1.0.0-rc.11" + "@rolldown/binding-linux-arm-gnueabihf": "npm:1.0.0-rc.11" + "@rolldown/binding-linux-arm64-gnu": "npm:1.0.0-rc.11" + "@rolldown/binding-linux-arm64-musl": "npm:1.0.0-rc.11" + "@rolldown/binding-linux-ppc64-gnu": "npm:1.0.0-rc.11" + "@rolldown/binding-linux-s390x-gnu": "npm:1.0.0-rc.11" + "@rolldown/binding-linux-x64-gnu": "npm:1.0.0-rc.11" + "@rolldown/binding-linux-x64-musl": "npm:1.0.0-rc.11" + "@rolldown/binding-openharmony-arm64": "npm:1.0.0-rc.11" + "@rolldown/binding-wasm32-wasi": "npm:1.0.0-rc.11" + "@rolldown/binding-win32-arm64-msvc": "npm:1.0.0-rc.11" + "@rolldown/binding-win32-x64-msvc": "npm:1.0.0-rc.11" + "@rolldown/pluginutils": "npm:1.0.0-rc.11" + dependenciesMeta: + "@rolldown/binding-android-arm64": + optional: true + "@rolldown/binding-darwin-arm64": + optional: true + "@rolldown/binding-darwin-x64": + optional: true + "@rolldown/binding-freebsd-x64": + optional: true + "@rolldown/binding-linux-arm-gnueabihf": + optional: true + "@rolldown/binding-linux-arm64-gnu": + optional: true + "@rolldown/binding-linux-arm64-musl": + optional: true + "@rolldown/binding-linux-ppc64-gnu": + optional: true + "@rolldown/binding-linux-s390x-gnu": + optional: true + "@rolldown/binding-linux-x64-gnu": + optional: true + "@rolldown/binding-linux-x64-musl": + optional: true + "@rolldown/binding-openharmony-arm64": + optional: true + "@rolldown/binding-wasm32-wasi": + optional: true + "@rolldown/binding-win32-arm64-msvc": + optional: true + "@rolldown/binding-win32-x64-msvc": + optional: true + bin: + rolldown: bin/cli.mjs + checksum: 10c0/f92457aa26dac614bbaa92079d05c6a4819054468b46b2f46f68bae4bf42dc2c840a4d89be4ffa2a5821a63cd46157fa167a93e1f0b6671f89c16e3da8e2dbf3 + languageName: node + linkType: hard + +"safer-buffer@npm:>= 2.1.2 < 3.0.0": + version: 2.1.2 + resolution: "safer-buffer@npm:2.1.2" + checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4 + languageName: node + linkType: hard + +"semver@npm:^7.3.5": + version: 7.7.4 + resolution: "semver@npm:7.7.4" + bin: + semver: bin/semver.js + checksum: 10c0/5215ad0234e2845d4ea5bb9d836d42b03499546ddafb12075566899fc617f68794bb6f146076b6881d755de17d6c6cc73372555879ec7dce2c2feee947866ad2 + languageName: node + linkType: hard + +"shortid@npm:^2.2.17": + version: 2.2.17 + resolution: "shortid@npm:2.2.17" + dependencies: + nanoid: "npm:^3.3.8" + checksum: 10c0/f063b5cd251821594856a4b120389e67997b66e7b03294225ca34951dcdeada35eaaf6eb53a2c93dcbf7f8ed926031b43767f7ebfdb3a6ca3482f694c925ba33 + languageName: node + linkType: hard + +"smart-buffer@npm:^4.2.0": + version: 4.2.0 + resolution: "smart-buffer@npm:4.2.0" + checksum: 10c0/a16775323e1404dd43fabafe7460be13a471e021637bc7889468eb45ce6a6b207261f454e4e530a19500cc962c4cc5348583520843b363f4193cee5c00e1e539 + languageName: node + linkType: hard + +"socks-proxy-agent@npm:^8.0.3": + version: 8.0.5 + resolution: "socks-proxy-agent@npm:8.0.5" + dependencies: + agent-base: "npm:^7.1.2" + debug: "npm:^4.3.4" + socks: "npm:^2.8.3" + checksum: 10c0/5d2c6cecba6821389aabf18728325730504bf9bb1d9e342e7987a5d13badd7a98838cc9a55b8ed3cb866ad37cc23e1086f09c4d72d93105ce9dfe76330e9d2a6 + languageName: node + linkType: hard + +"socks@npm:^2.8.3": + version: 2.8.7 + resolution: "socks@npm:2.8.7" + dependencies: + ip-address: "npm:^10.0.1" + smart-buffer: "npm:^4.2.0" + checksum: 10c0/2805a43a1c4bcf9ebf6e018268d87b32b32b06fbbc1f9282573583acc155860dc361500f89c73bfbb157caa1b4ac78059eac0ef15d1811eb0ca75e0bdadbc9d2 + languageName: node + linkType: hard + +"source-map-js@npm:^1.2.1": + version: 1.2.1 + resolution: "source-map-js@npm:1.2.1" + checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf + languageName: node + linkType: hard + +"sprintf-js@npm:~1.0.2": + version: 1.0.3 + resolution: "sprintf-js@npm:1.0.3" + checksum: 10c0/ecadcfe4c771890140da5023d43e190b7566d9cf8b2d238600f31bec0fc653f328da4450eb04bd59a431771a8e9cc0e118f0aa3974b683a4981b4e07abc2a5bb + languageName: node + linkType: hard + +"ssri@npm:^13.0.0": + version: 13.0.1 + resolution: "ssri@npm:13.0.1" + dependencies: + minipass: "npm:^7.0.3" + checksum: 10c0/cf6408a18676c57ff2ed06b8a20dc64bb3e748e5c7e095332e6aecaa2b8422b1e94a739a8453bf65156a8a47afe23757ba4ab52d3ea3b62322dc40875763e17a + languageName: node + linkType: hard + +"string-template@npm:~0.2.0": + version: 0.2.1 + resolution: "string-template@npm:0.2.1" + checksum: 10c0/5dc9bd8741e50aaf1ebb616c64fdada32301dc52718692a7a13088285b96fecd1010ab612b348ef29c08dff4df4f96c8e80689ca855a578d01cc182e48199182 + languageName: node + linkType: hard + +"tar@npm:^7.5.4": + version: 7.5.12 + resolution: "tar@npm:7.5.12" + dependencies: + "@isaacs/fs-minipass": "npm:^4.0.0" + chownr: "npm:^3.0.0" + minipass: "npm:^7.1.2" + minizlib: "npm:^3.1.0" + yallist: "npm:^5.0.0" + checksum: 10c0/3825c5974f5fde792981f47ee9ffea021ee7f4b552b7ab95eeb98e5dfadfd5a5d5861f01fb772e2e5637a41980d3c019fd6cdad1be48b462b886abd7fe0fa17c + languageName: node + linkType: hard + +"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.15": + version: 0.2.15 + resolution: "tinyglobby@npm:0.2.15" + dependencies: + fdir: "npm:^6.5.0" + picomatch: "npm:^4.0.3" + checksum: 10c0/869c31490d0d88eedb8305d178d4c75e7463e820df5a9b9d388291daf93e8b1eb5de1dad1c1e139767e4269fe75f3b10d5009b2cc14db96ff98986920a186844 + languageName: node + linkType: hard + +"tslib@npm:^2.3.0, tslib@npm:^2.4.0": + version: 2.8.1 + resolution: "tslib@npm:2.8.1" + checksum: 10c0/9c4759110a19c53f992d9aae23aac5ced636e99887b51b9e61def52611732872ff7668757d4e4c61f19691e36f4da981cd9485e869b4a7408d689f6bf1f14e62 + languageName: node + linkType: hard + +"uuid@npm:^9.0.0": + version: 9.0.1 + resolution: "uuid@npm:9.0.1" + bin: + uuid: dist/bin/uuid + checksum: 10c0/1607dd32ac7fc22f2d8f77051e6a64845c9bce5cd3dd8aa0070c074ec73e666a1f63c7b4e0f4bf2bc8b9d59dc85a15e17807446d9d2b17c8485fbc2147b27f9b + languageName: node + linkType: hard + +"virtual-dom@npm:^2.1.1": + version: 2.1.1 + resolution: "virtual-dom@npm:2.1.1" + dependencies: + browser-split: "npm:0.0.1" + error: "npm:^4.3.0" + ev-store: "npm:^7.0.0" + global: "npm:^4.3.0" + is-object: "npm:^1.0.1" + next-tick: "npm:^0.2.2" + x-is-array: "npm:0.1.0" + x-is-string: "npm:0.1.0" + checksum: 10c0/15b89e0ae3d259a190c0489c74b3119f10e93fe55d108f394749a1a324e413e22fbc98710538b31cfaafbedd2ab0ff5379c61790e20778b923e33375f47d3cfb + languageName: node + linkType: hard + +"vite@npm:^8.0.2": + version: 8.0.2 + resolution: "vite@npm:8.0.2" + dependencies: + fsevents: "npm:~2.3.3" + lightningcss: "npm:^1.32.0" + picomatch: "npm:^4.0.3" + postcss: "npm:^8.5.8" + rolldown: "npm:1.0.0-rc.11" + tinyglobby: "npm:^0.2.15" + peerDependencies: + "@types/node": ^20.19.0 || >=22.12.0 + "@vitejs/devtools": ^0.1.0 + esbuild: ^0.27.0 + jiti: ">=1.21.0" + less: ^4.0.0 + sass: ^1.70.0 + sass-embedded: ^1.70.0 + stylus: ">=0.54.8" + sugarss: ^5.0.0 + terser: ^5.16.0 + tsx: ^4.8.1 + yaml: ^2.4.2 + dependenciesMeta: + fsevents: + optional: true + peerDependenciesMeta: + "@types/node": + optional: true + "@vitejs/devtools": + optional: true + esbuild: + optional: true + jiti: + optional: true + less: + optional: true + sass: + optional: true + sass-embedded: + optional: true + stylus: + optional: true + sugarss: + optional: true + terser: + optional: true + tsx: + optional: true + yaml: + optional: true + bin: + vite: bin/vite.js + checksum: 10c0/b271a3c3f8100bab45ee16583cb046aa028f943205b56065b09d3f1851ed8e7068fc6a76e9dc01beca805e8bb1e53f229c4c1c623be87ef1acb00fc002a29cf6 + languageName: node + linkType: hard + +"which@npm:^6.0.0": + version: 6.0.1 + resolution: "which@npm:6.0.1" + dependencies: + isexe: "npm:^4.0.0" + bin: + node-which: bin/which.js + checksum: 10c0/7e710e54ea36d2d6183bee2f9caa27a3b47b9baf8dee55a199b736fcf85eab3b9df7556fca3d02b50af7f3dfba5ea3a45644189836df06267df457e354da66d5 + languageName: node + linkType: hard + +"ws@npm:^8.18.2": + version: 8.18.3 + resolution: "ws@npm:8.18.3" + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: ">=5.0.2" + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + checksum: 10c0/eac918213de265ef7cb3d4ca348b891a51a520d839aa51cdb8ca93d4fa7ff9f6ccb339ccee89e4075324097f0a55157c89fa3f7147bde9d8d7e90335dc087b53 + languageName: node + linkType: hard + +"x-is-array@npm:0.1.0": + version: 0.1.0 + resolution: "x-is-array@npm:0.1.0" + checksum: 10c0/b559d9acfdffb3ea6c31e07b152439df2e85d98cc674846ccb785a003ff597bd3e31475d50eda62296c1503284c69c00bbb1f1dd5b3958b32aa72ea26099c42c + languageName: node + linkType: hard + +"x-is-string@npm:0.1.0": + version: 0.1.0 + resolution: "x-is-string@npm:0.1.0" + checksum: 10c0/1ec001229eb17ac5c08c5bfb03c6d6e415306a6e923c0dbcadc5cb655b6008f61d50f29fcf610c9527bcbb9df40db82fb3cc9aefcb575898fba2affa17864f1c + languageName: node + linkType: hard + +"xtend@npm:~4.0.0": + version: 4.0.2 + resolution: "xtend@npm:4.0.2" + checksum: 10c0/366ae4783eec6100f8a02dff02ac907bf29f9a00b82ac0264b4d8b832ead18306797e283cf19de776538babfdcb2101375ec5646b59f08c52128ac4ab812ed0e + languageName: node + linkType: hard + +"yallist@npm:^4.0.0": + version: 4.0.0 + resolution: "yallist@npm:4.0.0" + checksum: 10c0/2286b5e8dbfe22204ab66e2ef5cc9bbb1e55dfc873bbe0d568aa943eb255d131890dfd5bf243637273d31119b870f49c18fcde2c6ffbb7a7a092b870dc90625a + languageName: node + linkType: hard + +"yallist@npm:^5.0.0": + version: 5.0.0 + resolution: "yallist@npm:5.0.0" + checksum: 10c0/a499c81ce6d4a1d260d4ea0f6d49ab4da09681e32c3f0472dee16667ed69d01dae63a3b81745a24bd78476ec4fcf856114cb4896ace738e01da34b2c42235416 + languageName: node + linkType: hard